aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/staticres.cpp
diff options
context:
space:
mode:
authorFlorian Kagerer2009-11-28 23:44:06 +0000
committerFlorian Kagerer2009-11-28 23:44:06 +0000
commit5f3e54fcb734d7544fec94a0fe92698b8295a531 (patch)
treebd026c49bd5cf1df4bfd3640740148c8aab6eb44 /engines/kyra/staticres.cpp
parentc7371320d61bcd48682167dc0ba42fc6f06de173 (diff)
downloadscummvm-rg350-5f3e54fcb734d7544fec94a0fe92698b8295a531.tar.gz
scummvm-rg350-5f3e54fcb734d7544fec94a0fe92698b8295a531.tar.bz2
scummvm-rg350-5f3e54fcb734d7544fec94a0fe92698b8295a531.zip
KYRA: removed hack in staticres loader
svn-id: r46181
Diffstat (limited to 'engines/kyra/staticres.cpp')
-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;
}