summaryrefslogtreecommitdiff
path: root/src/client/interface.c
diff options
context:
space:
mode:
authorDusan Durech <dusan@debian.debian>2009-04-12 23:00:24 +0200
committerDusan Durech <dusan@debian.debian>2009-04-12 23:00:24 +0200
commit0287f62578cb4aa643649a9d62dc753586b16b30 (patch)
tree7f6e2721d71ab2824b7d163a5b878d390ddb7918 /src/client/interface.c
parent5876841408bf307d78d254b5ca355c61044e9e72 (diff)
fix bad preFixs
Diffstat (limited to 'src/client/interface.c')
-rw-r--r--src/client/interface.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/client/interface.c b/src/client/interface.c
index ec87e4f..a3fb535 100644
--- a/src/client/interface.c
+++ b/src/client/interface.c
@@ -151,10 +151,10 @@ int interface_init()
SDL_EnableKeyRepeat(SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL);
timer = SDL_AddTimer(INTERVAL, TimerCallback, NULL);
- keyboardBuffer_init(KEYBOARD_BUFFER_SIZE);
+ keyboard_buffer_init(KEYBOARD_BUFFER_SIZE);
- hotKey_init();
- hotKey_register(SDLK_F1, hotkey_screen);
+ hot_key_init();
+ hot_key_register(SDLK_F1, hotkey_screen);
srand((unsigned) time(NULL));
isInterfaceInit = TRUE;
@@ -272,7 +272,7 @@ int eventAction()
default:
//neni potreba vyuzivat frontu stale
if (keyboardBufferEnabled == TRUE)
- keyboardBuffer_push(event.key.keysym);
+ keyboard_buffer_push(event.key.keysym);
break;
}
break;
@@ -287,7 +287,7 @@ int eventAction()
screen_draw();
screen_event();
- hotKey_event();
+ hot_key_event();
screen_switch();
break;
@@ -335,8 +335,8 @@ void interface_quit()
{
DEBUG_MSG(_("Quitting SDL\n"));
- hotKey_quit();
- keyboardBuffer_quit();
+ hot_key_quit();
+ keyboard_buffer_quit();
SDL_Quit();