Skip to content

Commit

Permalink
HOPKINS: Fixed further int types
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Oct 22, 2012
1 parent 577a25c commit 35136d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions engines/hopkins/objects.cpp
Expand Up @@ -6840,7 +6840,7 @@ void ObjectsManager::VBOB(byte *a1, int idx, int a3, int a4, int a5) {
if (idx > 29)
error("MAX_VBOB exceeded");

if (_vm->_globals.VBob[idx].field4 <= 1u) {
if (_vm->_globals.VBob[idx].field4 <= 1) {
_vm->_globals.VBob[idx].field4 = 1;
_vm->_globals.VBob[idx].field6 = a3;
_vm->_globals.VBob[idx].field8 = a4;
Expand Down Expand Up @@ -7984,9 +7984,9 @@ void ObjectsManager::SPACTION(byte *a1, const Common::String &a2, int a3, int a4
int v6;
int16 v7;
char v8;
__int32 v9;
int v9;
int16 v10;
__int32 v11;
int v11;
int spriteIndex;
char v14;
int16 v15;
Expand Down

0 comments on commit 35136d6

Please sign in to comment.