aboutsummaryrefslogtreecommitdiff
path: root/simon
diff options
context:
space:
mode:
authorTravis Howell2002-12-14 15:35:32 +0000
committerTravis Howell2002-12-14 15:35:32 +0000
commit2c16f43c8a59fab05ebe758ca8d689b4d6dbe247 (patch)
tree59d5c6d6400b4b84dc25b4d90feb65f9b23a4991 /simon
parent200c110f3db646f78e1a59fbd3a66df703540c3b (diff)
downloadscummvm-rg350-2c16f43c8a59fab05ebe758ca8d689b4d6dbe247.tar.gz
scummvm-rg350-2c16f43c8a59fab05ebe758ca8d689b4d6dbe247.tar.bz2
scummvm-rg350-2c16f43c8a59fab05ebe758ca8d689b4d6dbe247.zip
Enable missing code
svn-id: r5954
Diffstat (limited to 'simon')
-rw-r--r--simon/simon.cpp24
1 files changed, 10 insertions, 14 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp
index 9551e1a03a..f0b84785c7 100644
--- a/simon/simon.cpp
+++ b/simon/simon.cpp
@@ -2037,9 +2037,9 @@ void SimonState::set_video_mode(uint mode, uint vga_res_id)
_lock_word |= 0x20;
-// while ((*(volatile uint16*)&_lock_word) & 2) {
-// delay(10);
-// }
+ while ((*(volatile uint16*)&_lock_word) & 2) {
+ delay(10);
+ }
unlock();
@@ -2659,27 +2659,23 @@ void SimonState::timer_proc1()
if (!(_game & GAME_SIMON2)) {
expire_vga_timers();
expire_vga_timers();
+ _sync_flag_2 ^= 1;
_cepe_flag ^= 1;
if (!_cepe_flag)
expire_vga_timers();
- _sync_flag_2 ^= 1;
} else {
_sync_flag_2 ^= 1;
if (!_sync_flag_2)
expire_vga_timers();
- if (_lock_counter != 0 && !_sync_flag_2) {
- _lock_word &= ~2;
- return;
- }
}
-// if (_lock_counter !=0 && _sync_flag_2==1) {
-// printf("skipping draw...\n");
-// goto get_out;
-// }
+ if (_lock_counter != 0 && !_sync_flag_2) {
+ _lock_word &= ~2;
+ return;
+ }
}
timer_vga_sprites();
@@ -2718,9 +2714,9 @@ void SimonState::timer_callback()
_sync_flag_2 = true;
_timer_5--;
} else {
-// start = timeGetTime();
+// start = _system->get_msecs();
timer_proc1();
-// end = timeGetTime();
+// end = _system->get_msecs();
// if (start + 45 < end) {
// _timer_5 = (uint16)( (end - start) / 45);