diff options
| author | Dusan Durech <dusan.d@centrum.sk> | 2008-11-15 16:08:21 +0100 |
|---|---|---|
| committer | Dusan Durech <dusan.d@centrum.sk> | 2008-11-15 16:08:21 +0100 |
| commit | 35084eaadf8b37f5c4a325f0d4b01767753ee9c3 (patch) | |
| tree | 8ca9a541783690eb6087a52faafa75e9a53d1521 /src/client/interface.c | |
| parent | 98875c5a636f50fe89b9394b8193e86094ae14e0 (diff) | |
modification coding stile
Diffstat (limited to 'src/client/interface.c')
| -rw-r--r-- | src/client/interface.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/client/interface.c b/src/client/interface.c index d64ba36..33c4001 100644 --- a/src/client/interface.c +++ b/src/client/interface.c @@ -70,9 +70,7 @@ void hotkey_screen() fprintf(stderr, _("Unable to switch to FULLSCREEN mode!\n")); SDL_FreeSurface(screen); - screen = - SDL_SetVideoMode(WINDOW_SIZE_X, WINDOW_SIZE_Y, WIN_BPP, - g_win_flags); + screen = SDL_SetVideoMode(WINDOW_SIZE_X, WINDOW_SIZE_Y, WIN_BPP, g_win_flags); if (screen == NULL) { fprintf(stderr, _("Unable to switch to WINDOW mode! Error: %s\n"), @@ -216,7 +214,6 @@ void printPressAnyKey() } - int hack_slow() { static time_t lastTime = 0; |