aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/detection.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2019-08-01 13:07:32 +0200
committerEugene Sandulenko2019-09-03 17:17:31 +0200
commit9247adefec2de2978d28a9099afdf87239b8e9d4 (patch)
treea518240f18bf05725644b5aba49597830cd970e8 /engines/hdb/detection.cpp
parentee0445e557d1f89853a1fbd23f72abc12b5cedff (diff)
downloadscummvm-rg350-9247adefec2de2978d28a9099afdf87239b8e9d4.tar.gz
scummvm-rg350-9247adefec2de2978d28a9099afdf87239b8e9d4.tar.bz2
scummvm-rg350-9247adefec2de2978d28a9099afdf87239b8e9d4.zip
HDB: Fix isPPC() check
Diffstat (limited to 'engines/hdb/detection.cpp')
-rw-r--r--engines/hdb/detection.cpp2
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 {