aboutsummaryrefslogtreecommitdiff
path: root/simon/vga.cpp
diff options
context:
space:
mode:
authorTravis Howell2003-12-23 06:35:17 +0000
committerTravis Howell2003-12-23 06:35:17 +0000
commit10bdda505c1f166de4997fdb06fb58c375eae4eb (patch)
tree86be64116e0b5da1258356fc2bb42b30ccdf0d31 /simon/vga.cpp
parenta1831ee4fb19f9ad2f02005ad8e4425e26ea8cc1 (diff)
downloadscummvm-rg350-10bdda505c1f166de4997fdb06fb58c375eae4eb.tar.gz
scummvm-rg350-10bdda505c1f166de4997fdb06fb58c375eae4eb.tar.bz2
scummvm-rg350-10bdda505c1f166de4997fdb06fb58c375eae4eb.zip
simon2dos/talkie used different expire_vga_timers() code.
Solves several bugs. Using simon1 timer_proc() seciton as work out for speed issue at the moment. svn-id: r11867
Diffstat (limited to 'simon/vga.cpp')
-rw-r--r--simon/vga.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/simon/vga.cpp b/simon/vga.cpp
index d7f46ef896..095cf199e9 100644
--- a/simon/vga.cpp
+++ b/simon/vga.cpp
@@ -1409,7 +1409,7 @@ void SimonEngine::vc_40_var_add() {
tmp = _vga_var1 - _x_scroll;
if (tmp < 20)
_vga_var2 = tmp;
- add_vga_timer(10, NULL, 0, 0); /* special timer */
+ add_vga_timer(2, NULL, 0, 0); /* special timer */
}
}
no_scroll:;
@@ -1438,7 +1438,7 @@ void SimonEngine::vc_41_var_sub() {
tmp = _vga_var1 - _x_scroll;
if (_x_scroll < 20)
_vga_var2 = -_x_scroll;
- add_vga_timer(10, NULL, 0, 0); /* special timer */
+ add_vga_timer(2, NULL, 0, 0); /* special timer */
}
}
no_scroll:;