diff options
author | Borja Lorente | 2016-06-25 23:20:28 +0200 |
---|---|---|
committer | Borja Lorente | 2016-08-14 18:40:48 +0200 |
commit | 764d0ad0fed0dd4e65bd9f6b090fbb803666ba45 (patch) | |
tree | a6f8f1d89bc81ca42138b999ab66ee95caa4d0b6 /engines | |
parent | 8bee2a7b1c467a2b442cd0d8a35487ac9e963de9 (diff) | |
download | scummvm-rg350-764d0ad0fed0dd4e65bd9f6b090fbb803666ba45.tar.gz scummvm-rg350-764d0ad0fed0dd4e65bd9f6b090fbb803666ba45.tar.bz2 scummvm-rg350-764d0ad0fed0dd4e65bd9f6b090fbb803666ba45.zip |
MACVENTURE: Fix small script bug
Diffstat (limited to 'engines')
-rw-r--r-- | engines/macventure/gui.cpp | 4 | ||||
-rw-r--r-- | engines/macventure/script.cpp | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/engines/macventure/gui.cpp b/engines/macventure/gui.cpp index 04cc390546..6f3680b321 100644 --- a/engines/macventure/gui.cpp +++ b/engines/macventure/gui.cpp @@ -34,8 +34,8 @@ namespace MacVenture { enum MenuAction; enum { - kCursorWidth = 4, // HACK Arbitrary width to test - kCursorHeight = 4 + kCursorWidth = 10, // HACK Arbitrary width to test + kCursorHeight = 10 }; enum { diff --git a/engines/macventure/script.cpp b/engines/macventure/script.cpp index 2e283e4c15..cca144e2d8 100644 --- a/engines/macventure/script.cpp +++ b/engines/macventure/script.cpp @@ -593,6 +593,7 @@ void ScriptEngine::op8eCOPYN(EngineState * state, EngineFrame * frame) { while (n) { val = state->peek(offs); state->push(val); + n--; } } |