diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-11-18 14:49:56 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-11-18 14:49:56 +0000 |
| commit | 65c7ab0a40497887fe38b5c1c49034ecd2a40c81 (patch) | |
| tree | 0192f84de97e9f14b11ec4a74a889460bf1343bc /src/game/client/game_client.cpp | |
| parent | d4d1691fea007b04ad21686e8622efbbe53e9768 (diff) | |
| download | zcatch-65c7ab0a40497887fe38b5c1c49034ecd2a40c81.tar.gz zcatch-65c7ab0a40497887fe38b5c1c49034ecd2a40c81.zip | |
fixed the spectate, join team buttons
Diffstat (limited to 'src/game/client/game_client.cpp')
| -rw-r--r-- | src/game/client/game_client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/client/game_client.cpp b/src/game/client/game_client.cpp index d9c2ba53..4d81c344 100644 --- a/src/game/client/game_client.cpp +++ b/src/game/client/game_client.cpp @@ -40,7 +40,7 @@ enum }; static int chat_mode = CHATMODE_NONE; -static bool menu_active = false; +bool menu_active = false; static bool emoticon_selector_active = false; static vec2 mouse_pos; @@ -48,7 +48,7 @@ static vec2 local_character_pos; static vec2 local_target_pos; static const obj_player_character *local_character = 0; static const obj_player_character *local_prev_character = 0; -static const obj_player_info *local_info = 0; +const obj_player_info *local_info = 0; static const obj_game *gameobj = 0; static struct client_data |