summaryrefslogtreecommitdiff
path: root/src/client/hotKey.c
diff options
context:
space:
mode:
authorxHire <xhire@tuxportal.cz>2009-05-26 00:48:20 +0200
committerxHire <xhire@tuxportal.cz>2009-05-26 01:12:15 +0200
commit53fdb78257cd4bf454f255deede74d8e98e752fb (patch)
tree2b3940027d3e371b855bd9da31efcbbcb2765cec /src/client/hotKey.c
parent409083e69d4bb9d8b1eb492b3474c86e093f2de8 (diff)
Fixed few typos
Diffstat (limited to 'src/client/hotKey.c')
-rw-r--r--src/client/hotKey.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/hotKey.c b/src/client/hotKey.c
index 3e67edd..b09b344 100644
--- a/src/client/hotKey.c
+++ b/src/client/hotKey.c
@@ -78,7 +78,7 @@ void hot_key_unregister(SDLKey key)
hotkey = findHotkey(key);
if (hotkey == NULL) {
- assert(!_("[Error] Unregisterring not registerred hotkey"));
+ assert(!_("[Error] Unregistering not registered hotkey"));
}
my_index = list_search(listHotKey, hotkey);
@@ -93,7 +93,7 @@ void hot_key_enable(SDLKey key)
hotkey = findHotkey(key);
if (hotkey == NULL) {
- assert(!_("[Error] Enabling not registerred hotkey"));
+ assert(!_("[Error] Enabling not registered hotkey"));
}
lastActive = timer_get_current_time();
@@ -107,7 +107,7 @@ void hot_key_disable(SDLKey key)
hotkey = findHotkey(key);
if (hotkey == NULL) {
- assert(!_("[Error] Disabling not registerred hotkey"));
+ assert(!_("[Error] Disabling not registered hotkey"));
}
lastActive = timer_get_current_time();