diff options
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game.cpp b/src/game.cpp index 7b15b9ea..cdf4f7c2 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -48,6 +48,7 @@ volatile int tick_time; volatile bool refresh = false, action_time = false; int current_npc, server_tick; extern unsigned char screen_mode; +bool show_setup; #define MAX_TIME 10000 @@ -238,7 +239,7 @@ void do_input() { } if(key[KEY_F11] && action_time==true) - show_player_setup = true; + show_setup = true; // Emotions, Skill dialog if(key_shifts & KB_ALT_FLAG && action_time == true) { |