aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/inter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gob/inter.cpp')
-rw-r--r--engines/gob/inter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/gob/inter.cpp b/engines/gob/inter.cpp
index 128ea3f465..fccf8e70b9 100644
--- a/engines/gob/inter.cpp
+++ b/engines/gob/inter.cpp
@@ -226,7 +226,7 @@ void Inter::funcBlock(int16 retFlag) {
}
} // End of workaround
- cmd = (byte) *_vm->_global->_inter_execPtr;
+ cmd = *_vm->_global->_inter_execPtr;
if ((cmd >> 4) >= 12) {
cmd2 = 16 - (cmd >> 4);
cmd &= 0xF;
@@ -260,7 +260,7 @@ void Inter::funcBlock(int16 retFlag) {
}
void Inter::callSub(int16 retFlag) {
- int16 block;
+ byte block;
while (!_vm->_quitRequested && _vm->_global->_inter_execPtr &&
(_vm->_global->_inter_execPtr != _vm->_game->_totFileData)) {