HDB: Fix isPPC() check

This commit is contained in:
Eugene Sandulenko 2019-08-01 13:07:32 +02:00
parent ee0445e557
commit 9247adefec

View File

@ -49,7 +49,7 @@ bool HDBGame::isDemo() const {
} }
bool HDBGame::isPPC() const { bool HDBGame::isPPC() const {
return (getPlatform() & Common::kPlatformPocketPC); return (getPlatform() == Common::kPlatformPocketPC);
} }
bool HDBGame::isHandango() const { bool HDBGame::isHandango() const {