(svn r18027) -Codechange: make some unneededly global variables static and remove some unused variables

This commit is contained in:
rubidium
2009-11-09 09:59:35 +00:00
parent f1f3009782
commit b2d7edddfa
14 changed files with 23 additions and 25 deletions

View File

@@ -23,8 +23,8 @@
NetworkGameList *_network_game_list = NULL;
ThreadMutex *_network_game_list_mutex = ThreadMutex::New();
NetworkGameList *_network_game_delayed_insertion_list = NULL;
static ThreadMutex *_network_game_list_mutex = ThreadMutex::New();
static NetworkGameList *_network_game_delayed_insertion_list = NULL;
/** Add a new item to the linked gamelist, but do it delayed in the next tick
* or so to prevent race conditions.