aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBorja Lorente2016-06-25 23:20:28 +0200
committerBorja Lorente2016-08-14 18:40:48 +0200
commit764d0ad0fed0dd4e65bd9f6b090fbb803666ba45 (patch)
treea6f8f1d89bc81ca42138b999ab66ee95caa4d0b6
parent8bee2a7b1c467a2b442cd0d8a35487ac9e963de9 (diff)
downloadscummvm-rg350-764d0ad0fed0dd4e65bd9f6b090fbb803666ba45.tar.gz
scummvm-rg350-764d0ad0fed0dd4e65bd9f6b090fbb803666ba45.tar.bz2
scummvm-rg350-764d0ad0fed0dd4e65bd9f6b090fbb803666ba45.zip
MACVENTURE: Fix small script bug
-rw-r--r--engines/macventure/gui.cpp4
-rw-r--r--engines/macventure/script.cpp1
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--;
}
}