aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/kyra/staticres.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/engines/kyra/staticres.cpp b/engines/kyra/staticres.cpp
index 8a2f5079d8..2147322001 100644
--- a/engines/kyra/staticres.cpp
+++ b/engines/kyra/staticres.cpp
@@ -114,9 +114,6 @@ const IndexTable iPlatformTable[] = {
};
byte getPlatformID(const GameFlags &flags) {
- // HACK: Gross hack to support Kyra2 PC98, till there's data for it in kyra.dat
- if (flags.gameID == GI_KYRA2 && flags.platform == Common::kPlatformPC98)
- return 3;
return Common::find(iPlatformTable, iPlatformTable + ARRAYSIZE(iPlatformTable) - 1, flags.platform)->value;
}