aboutsummaryrefslogtreecommitdiff
path: root/simon/simon.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-11-10 00:53:00 +0000
committerTravis Howell2005-11-10 00:53:00 +0000
commit3a670640f1069ba5158a82bac57b0582042db3cc (patch)
treeee06bfc2c2ede00962d4c53e9ff4afda6f59914c /simon/simon.cpp
parent0cfc4456dec1a0f4eb8b50a661232912c36b4c9d (diff)
downloadscummvm-rg350-3a670640f1069ba5158a82bac57b0582042db3cc.tar.gz
scummvm-rg350-3a670640f1069ba5158a82bac57b0582042db3cc.tar.bz2
scummvm-rg350-3a670640f1069ba5158a82bac57b0582042db3cc.zip
Update debug tables.
svn-id: r19542
Diffstat (limited to 'simon/simon.cpp')
-rw-r--r--simon/simon.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp
index 0a958cfb2c..203fdebeb3 100644
--- a/simon/simon.cpp
+++ b/simon/simon.cpp
@@ -506,7 +506,7 @@ SimonEngine::SimonEngine(GameDetector *detector, OSystem *syst)
_runScriptReturn1 = 0;
_skipVgaWait = 0;
_noParentNotify = 0;
- _vgaRes328Loaded = 0;
+ _beardLoaded = 0;
_hitarea_unk_3 = 0;
_mortalFlag = 0;
_updateScreen = 0;
@@ -1051,11 +1051,11 @@ Child *SimonEngine::findChildOfType(Item *i, uint type) {
return NULL;
}
-bool SimonEngine::hasChildOfType1(Item *item) {
+bool SimonEngine::isRoom(Item *item) {
return findChildOfType(item, 1) != NULL;
}
-bool SimonEngine::hasChildOfType2(Item *item) {
+bool SimonEngine::isObject(Item *item) {
return findChildOfType(item, 2) != NULL;
}