aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/script.h
diff options
context:
space:
mode:
authorFilippos Karapetis2010-11-27 18:08:47 +0000
committerFilippos Karapetis2010-11-27 18:08:47 +0000
commit3485d433c5c158ceb1ea74d985fa9c1274185e9c (patch)
treeb002a4be4877f8a29c1c060ed09cd0e7d77bcd4e /engines/sci/engine/script.h
parent49afe9ccffbf9f0bc9416f925a6b56bfdb02db7d (diff)
downloadscummvm-rg350-3485d433c5c158ceb1ea74d985fa9c1274185e9c.tar.gz
scummvm-rg350-3485d433c5c158ceb1ea74d985fa9c1274185e9c.tar.bz2
scummvm-rg350-3485d433c5c158ceb1ea74d985fa9c1274185e9c.zip
SCI: Fixed bug #3034713 - "ICEMAN Demo: Fails to find base object"
This could happen because objects in scripts can be in the wrong order. Same thing happens in the French and German version of KQ5 (bug #3035396). Removed the scriptObjRemove() method, which is in fact a hack. svn-id: r54510
Diffstat (limited to 'engines/sci/engine/script.h')
-rw-r--r--engines/sci/engine/script.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/engines/sci/engine/script.h b/engines/sci/engine/script.h
index 03c470b4e0..18d7157747 100644
--- a/engines/sci/engine/script.h
+++ b/engines/sci/engine/script.h
@@ -137,12 +137,6 @@ public:
Object *scriptObjInit(reg_t obj_pos, bool fullObjectInit = true);
/**
- * Removes a script object
- * @param obj_pos Location (segment, offset) of the object.
- */
- void scriptObjRemove(reg_t obj_pos);
-
- /**
* Initializes the script's local variables
* @param segMan A reference to the segment manager
*/