diff options
author | Strangerke | 2013-01-01 23:16:07 +0100 |
---|---|---|
committer | Strangerke | 2013-01-01 23:16:07 +0100 |
commit | b21000901a95c3def2f7cd48ae9f6c1ec5bdd3fb (patch) | |
tree | 882ecc222e14f01dbbaad93abead158bf32b5dc3 | |
parent | 13063aeb3f93daddaa2a0664b79eb400c851ea8c (diff) | |
download | scummvm-rg350-b21000901a95c3def2f7cd48ae9f6c1ec5bdd3fb.tar.gz scummvm-rg350-b21000901a95c3def2f7cd48ae9f6c1ec5bdd3fb.tar.bz2 scummvm-rg350-b21000901a95c3def2f7cd48ae9f6c1ec5bdd3fb.zip |
HOPKINS: Missing modifications in previous commit
-rw-r--r-- | engines/hopkins/computer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/hopkins/computer.cpp b/engines/hopkins/computer.cpp index ae49caa3da..b3accfa3e3 100644 --- a/engines/hopkins/computer.cpp +++ b/engines/hopkins/computer.cpp @@ -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); } @@ -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; |