aboutsummaryrefslogtreecommitdiff
path: root/engines/agos/subroutine.cpp
diff options
context:
space:
mode:
authorTravis Howell2007-05-10 00:43:27 +0000
committerTravis Howell2007-05-10 00:43:27 +0000
commit6452a701be5442736e72cfe77ab1c300a43cc88b (patch)
tree9f418fdae328b6efa9e01b868dfa3a1988c0f827 /engines/agos/subroutine.cpp
parentf0cd01b5764f702ca5696e4728b102035fb9f0b1 (diff)
downloadscummvm-rg350-6452a701be5442736e72cfe77ab1c300a43cc88b.tar.gz
scummvm-rg350-6452a701be5442736e72cfe77ab1c300a43cc88b.tar.bz2
scummvm-rg350-6452a701be5442736e72cfe77ab1c300a43cc88b.zip
Fix glitches in pause options of Elvira 1.
svn-id: r26796
Diffstat (limited to 'engines/agos/subroutine.cpp')
-rw-r--r--engines/agos/subroutine.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/agos/subroutine.cpp b/engines/agos/subroutine.cpp
index 347aca997a..8bff4e43f8 100644
--- a/engines/agos/subroutine.cpp
+++ b/engines/agos/subroutine.cpp
@@ -321,7 +321,7 @@ bool AGOSEngine::loadTablesIntoMem(uint subr_id) {
_tablesHeapCurPosNew = _tablesHeapCurPos;
if (_tablesHeapCurPos > _tablesHeapSize)
- error("loadTablesOldIntoMem: Out of table memory");
+ error("loadTablesIntoMem: Out of table memory");
return 1;
}
@@ -331,7 +331,7 @@ bool AGOSEngine::loadTablesIntoMem(uint subr_id) {
p += 6;
}
- debug(1,"loadTablesOldIntoMem: didn't find %d", subr_id);
+ debug(1,"loadTablesIntoMem: didn't find %d", subr_id);
return 0;
}
@@ -387,13 +387,13 @@ bool AGOSEngine_Waxworks::loadTablesIntoMem(uint subr_id) {
_tablesHeapCurPosNew = _tablesHeapCurPos;
if (_tablesHeapCurPos > _tablesHeapSize)
- error("loadTablesNewIntoMem: Out of table memory");
+ error("loadTablesIntoMem: Out of table memory");
return 1;
}
}
}
- debug(1,"loadTablesNewIntoMem: didn't find %d", subr_id);
+ debug(1,"loadTablesIntoMem: didn't find %d", subr_id);
return 0;
}