aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/script_v5.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp
index 5feb919262..6d40de6bc9 100644
--- a/scumm/script_v5.cpp
+++ b/scumm/script_v5.cpp
@@ -1820,7 +1820,9 @@ void ScummEngine_v5::o5_resourceRoutines() {
break;
default:
- error("o5_resourceRoutines: default case %d", op);
+ // FIXME: Reverted to a warning from an error, as per
+ // zak256 bug #1290485. This is not a proper fix. :)
+ warning("o5_resourceRoutines: default case %d", op);
}
}