Changeset - r6236:3a449301e326
[Not reviewed]
master
0 1 0
bjarni - 17 years ago 2007-03-06 22:01:59
bjarni@openttd.org
(svn r9039) -Fix r9034: missed the _pause in cocoa_v.mm
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/video/cocoa_v.mm
Show inline comments
 
@@ -712,7 +712,7 @@ static void QZ_GameLoop(void)
 
		}
 

	
 
		cur_ticks = GetTick();
 
		if (cur_ticks >= next_tick || (_fast_forward && !_pause) || cur_ticks < prev_cur_ticks) {
 
		if (cur_ticks >= next_tick || (_fast_forward && !_pause_game) || cur_ticks < prev_cur_ticks) {
 
			next_tick = cur_ticks + 30;
 

	
 
			_ctrl_pressed = !!(_cocoa_video_data.current_mods & NSControlKeyMask);
0 comments (0 inline, 0 general)