Skip to content

Commit

Permalink
HOPKINS: Missing modifications in previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Strangerke committed Jan 1, 2013
1 parent 13063ae commit b210009
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/hopkins/computer.cpp
Expand Up @@ -966,7 +966,7 @@ void ComputerManager::IMPSCORE(int charPos, int charDisp) {
xp = 134;

if (charDisp >= 48 && charDisp <= 57)
idx = charDisp - 45
idx = charDisp - 45;

_vm->_graphicsManager.AFFICHE_SPEEDVGA(_breakoutSpr, xp, 11, idx);
}
Expand Down Expand Up @@ -1008,7 +1008,7 @@ void ComputerManager::saveScore() {
} while (!v3);
}

ptr = _vm->_globals.allocMemory(100);
byte *ptr = _vm->_globals.allocMemory(100);
memset(ptr, 0, 99);
for (int v5 = 0; v5 <= 5; v5++) {
v6 = 16 * v5;
Expand Down

0 comments on commit b210009

Please sign in to comment.