From 0287f62578cb4aa643649a9d62dc753586b16b30 Mon Sep 17 00:00:00 2001 From: Dusan Durech Date: Sun, 12 Apr 2009 23:00:24 +0200 Subject: fix bad preFixs --- src/client/hotKey.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/client/hotKey.c') diff --git a/src/client/hotKey.c b/src/client/hotKey.c index bf8cc96..94d4b24 100644 --- a/src/client/hotKey.c +++ b/src/client/hotKey.c @@ -53,13 +53,13 @@ static hotKey_t *findHotkey(SDLKey key) return NULL; } -void hotKey_init() +void hot_key_init() { listHotKey = list_new(); lastActive = timer_get_current_time(); } -void hotKey_register(SDLKey key, void (*handler) ()) +void hot_key_register(SDLKey key, void (*handler) ()) { hotKey_t *hotkey; /* @@ -71,7 +71,7 @@ void hotKey_register(SDLKey key, void (*handler) ()) list_ins(listHotKey, 0, hotkey); } -void unhotKey_register(SDLKey key) +void unhot_key_register(SDLKey key) { hotKey_t *hotkey; int my_index; @@ -87,7 +87,7 @@ void unhotKey_register(SDLKey key) list_del_item(listHotKey, my_index, destroyHotKey); } -void hotKey_enable(SDLKey key) +void hot_key_enable(SDLKey key) { hotKey_t *hotkey; @@ -101,7 +101,7 @@ void hotKey_enable(SDLKey key) hotkey->active = TRUE; } -void hotKey_disable(SDLKey key) +void hot_key_disable(SDLKey key) { hotKey_t *hotkey; @@ -115,7 +115,7 @@ void hotKey_disable(SDLKey key) hotkey->active = FALSE; } -void hotKey_event() +void hot_key_event() { my_time_t currentTime; Uint8 *mapa; @@ -144,7 +144,7 @@ void hotKey_event() } } -void hotKey_quit() +void hot_key_quit() { list_destroy_item(listHotKey, destroyHotKey); } -- cgit v1.2.3