aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/snail.cpp
diff options
context:
space:
mode:
authorStrangerke2011-06-14 23:54:59 +0200
committerStrangerke2011-06-14 23:54:59 +0200
commit1ebe182ba1f707bbc10afb3626a30fed89ceb923 (patch)
treeb6284b031e0e051e26ab015f6701f530b1a6fc39 /engines/cge/snail.cpp
parent44cf1872e22dc673dde422faa255a1fd7e6e78e8 (diff)
downloadscummvm-rg350-1ebe182ba1f707bbc10afb3626a30fed89ceb923.tar.gz
scummvm-rg350-1ebe182ba1f707bbc10afb3626a30fed89ceb923.tar.bz2
scummvm-rg350-1ebe182ba1f707bbc10afb3626a30fed89ceb923.zip
CGE: Fix the remaining link errors. It now crashes instantly, most likely because of the VGA class
Diffstat (limited to 'engines/cge/snail.cpp')
-rw-r--r--engines/cge/snail.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/cge/snail.cpp b/engines/cge/snail.cpp
index 3fedeab04d..b2f4648e10 100644
--- a/engines/cge/snail.cpp
+++ b/engines/cge/snail.cpp
@@ -905,7 +905,7 @@ static void SNMouse(bool on) {
void SNAIL::RunCom(void) {
static int count = 1;
- extern void SwitchCave(int);
+// extern void SwitchCave(int);
if (! Busy) {
Busy = true;
uint8 tmphea = Head;
@@ -971,7 +971,8 @@ void SNAIL::RunCom(void) {
}
break;
case SNCAVE :
- SwitchCave(snc->Val);
+ // SwitchCave(snc->Val);
+ warning("Problematic call of SwitchCave in SNAIL::RunCom");
break;
case SNKILL :
SNKill(sprel);