Skip to content

Commit 1e06711

Browse files
committed
tweak name, per feedback
1 parent ac5142d commit 1e06711

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

code/popup/popup.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ static popup_info Popup_info;
129129
static int Popup_flags;
130130
static 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

134134
static 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

0 commit comments

Comments
 (0)