aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/inter.cpp
diff options
context:
space:
mode:
authorSven Hesse2007-04-02 11:05:09 +0000
committerSven Hesse2007-04-02 11:05:09 +0000
commit53119f2c5d782798e3e1be9e15626be931947ae8 (patch)
tree030fb876403ec3c8bf96c452db7cdd9ecd130b6a /engines/gob/inter.cpp
parent89a29e32bfc1815a5a205126fb947a8c318f78bb (diff)
downloadscummvm-rg350-53119f2c5d782798e3e1be9e15626be931947ae8.tar.gz
scummvm-rg350-53119f2c5d782798e3e1be9e15626be931947ae8.tar.bz2
scummvm-rg350-53119f2c5d782798e3e1be9e15626be931947ae8.zip
"char *" -> "byte *" where appropriate
svn-id: r26369
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)) {