aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Snover2017-01-02 10:13:19 -0600
committerColin Snover2017-01-09 19:34:54 -0600
commit3e2f4a66f60ecebd2ee2cd42a303b881688bd626 (patch)
tree9c3816775fc92a1b70b7aef0fd5ac42be0e38dcf
parent97a47852c1cb0747460fdde15e50419addee84a7 (diff)
downloadscummvm-rg350-3e2f4a66f60ecebd2ee2cd42a303b881688bd626.tar.gz
scummvm-rg350-3e2f4a66f60ecebd2ee2cd42a303b881688bd626.tar.bz2
scummvm-rg350-3e2f4a66f60ecebd2ee2cd42a303b881688bd626.zip
SCI32: Remove SCI3 workarounds hack
-rw-r--r--engines/sci/engine/workarounds.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/engines/sci/engine/workarounds.cpp b/engines/sci/engine/workarounds.cpp
index f3e22b7c51..971230d498 100644
--- a/engines/sci/engine/workarounds.cpp
+++ b/engines/sci/engine/workarounds.cpp
@@ -842,15 +842,6 @@ const SciWorkaroundEntry kScrollWindowAdd_workarounds[] = {
};
SciWorkaroundSolution trackOriginAndFindWorkaround(int index, const SciWorkaroundEntry *workaroundList, SciCallOrigin *trackOrigin) {
- // HACK for SCI3: Temporarily ignore this
- if (getSciVersion() == SCI_VERSION_3) {
- warning("SCI3 HACK: trackOriginAndFindWorkaround() called, ignoring");
- SciWorkaroundSolution sci3IgnoreForNow;
- sci3IgnoreForNow.type = WORKAROUND_FAKE;
- sci3IgnoreForNow.value = 0;
- return sci3IgnoreForNow;
- }
-
const EngineState *state = g_sci->getEngineState();
ExecStack *lastCall = state->xs;
const SciGameId gameId = g_sci->getGameId();