aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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--;
}
}