diff options
author | Eugene Sandulenko | 2019-08-01 13:07:32 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:17:31 +0200 |
commit | 9247adefec2de2978d28a9099afdf87239b8e9d4 (patch) | |
tree | a518240f18bf05725644b5aba49597830cd970e8 | |
parent | ee0445e557d1f89853a1fbd23f72abc12b5cedff (diff) | |
download | scummvm-rg350-9247adefec2de2978d28a9099afdf87239b8e9d4.tar.gz scummvm-rg350-9247adefec2de2978d28a9099afdf87239b8e9d4.tar.bz2 scummvm-rg350-9247adefec2de2978d28a9099afdf87239b8e9d4.zip |
HDB: Fix isPPC() check
-rw-r--r-- | engines/hdb/detection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hdb/detection.cpp b/engines/hdb/detection.cpp index 9b6f411179..974d831568 100644 --- a/engines/hdb/detection.cpp +++ b/engines/hdb/detection.cpp @@ -49,7 +49,7 @@ bool HDBGame::isDemo() const { } bool HDBGame::isPPC() const { - return (getPlatform() & Common::kPlatformPocketPC); + return (getPlatform() == Common::kPlatformPocketPC); } bool HDBGame::isHandango() const { |