diff options
Diffstat (limited to 'src/screen/screen_world.c')
| -rw-r--r-- | src/screen/screen_world.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/screen/screen_world.c b/src/screen/screen_world.c index 16fffe8..f5556c9 100644 --- a/src/screen/screen_world.c +++ b/src/screen/screen_world.c @@ -43,7 +43,6 @@ static arena_t *arena; static int count; static int max_count; -static my_time_t lastServerLag; static bool_t isScreenWorldInit = FALSE; static bool_t isEndWorld; @@ -82,11 +81,6 @@ void setMaxCountRound(int n) max_count = n; } -void setLagServer(my_time_t lag) -{ - lastServerLag = lag; -} - void setWorldEnd() { isEndWorld = TRUE; @@ -373,7 +367,6 @@ static void eventEsc() if( mapa[(SDLKey)SDLK_ESCAPE] == SDL_PRESSED && isChatActive() == FALSE ) { - isEndWorld = TRUE; setWorldEnd(); return; } @@ -493,7 +486,6 @@ void startWorld() isEndWorld = FALSE; count = 0; - lastServerLag = LAG_SERVER_UNKNOWN; initListID(); initRadar(); |