aboutsummaryrefslogtreecommitdiff
path: root/engines/cruise/function.cpp
diff options
context:
space:
mode:
authorVincent Hamm2007-10-28 13:21:01 +0000
committerVincent Hamm2007-10-28 13:21:01 +0000
commit7860b90051bfb034874d5b5a3d574d718f89bc03 (patch)
tree96d2dad6627007cb0d902b56b9e471a4810eefcc /engines/cruise/function.cpp
parentc664dbcca81291443a46a4a0cefbfa2fdc714866 (diff)
downloadscummvm-rg350-7860b90051bfb034874d5b5a3d574d718f89bc03.tar.gz
scummvm-rg350-7860b90051bfb034874d5b5a3d574d718f89bc03.tar.bz2
scummvm-rg350-7860b90051bfb034874d5b5a3d574d718f89bc03.zip
Implement cursors
svn-id: r29286
Diffstat (limited to 'engines/cruise/function.cpp')
-rw-r--r--engines/cruise/function.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/cruise/function.cpp b/engines/cruise/function.cpp
index 2614d30172..35c6e46737 100644
--- a/engines/cruise/function.cpp
+++ b/engines/cruise/function.cpp
@@ -436,7 +436,7 @@ int16 Op_LoadBackground(void) {
result = loadBackground((char *)bgName, bgIdx);
}
- changeCursor(0);
+ changeCursor(CURSOR_NORMAL);
return result;
}
@@ -485,7 +485,7 @@ int16 Op_loadFile(void) {
saveVar6[0] = 0;
}
- changeCursor(0);
+ changeCursor(CURSOR_NORMAL);
return 0;
}
@@ -512,7 +512,7 @@ int16 Op_LoadAbs(void) {
result = loadFullBundle(name, param1);
}
- changeCursor(0);
+ changeCursor(CURSOR_NORMAL);
return result;
}