File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ static popup_info Popup_info;
129129static int Popup_flags;
130130static int Popup_screen_id = -1 ;
131131
132- static bool Popup_time_was_stopped = false ;
132+ static bool Popup_time_was_stopped_in_init = false ;
133133
134134static int Title_coords[GR_NUM_RESOLUTIONS][5 ] =
135135{
@@ -479,11 +479,11 @@ int popup_init(popup_info *pi, int flags)
479479 }
480480
481481 // anytime in single player, and multiplayer, not in mission, go ahead and stop time
482- Popup_time_was_stopped = false ;
482+ Popup_time_was_stopped_in_init = false ;
483483 if ( (Game_mode & GM_NORMAL) || ((Game_mode & GM_MULTIPLAYER) && !(Game_mode & GM_IN_MISSION)) ){
484484 if (!game_time_is_stopped ()) {
485485 game_stop_time ();
486- Popup_time_was_stopped = true ;
486+ Popup_time_was_stopped_in_init = true ;
487487 }
488488 }
489489
@@ -585,7 +585,7 @@ void popup_close(popup_info *pi, int screen_id)
585585 Popup_running_state = 0 ;
586586
587587 // if we had previously stopped time, go ahead and resume time
588- if ( Popup_time_was_stopped )
588+ if ( Popup_time_was_stopped_in_init )
589589 game_start_time ();
590590}
591591
You can’t perform that action at this time.
0 commit comments