From 9247adefec2de2978d28a9099afdf87239b8e9d4 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Thu, 1 Aug 2019 13:07:32 +0200 Subject: HDB: Fix isPPC() check --- engines/hdb/detection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/hdb/detection.cpp') 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 { -- cgit v1.2.3