diff options
Diffstat (limited to 'src/base/arena.c')
| -rw-r--r-- | src/base/arena.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/base/arena.c b/src/base/arena.c index 6b7cff5..67f67e4 100644 --- a/src/base/arena.c +++ b/src/base/arena.c @@ -11,9 +11,9 @@ #include "item.h" #include "myTimer.h" #include "modules.h" -#include "hotKey.h" #ifndef PUBLIC_SERVER +#include "hotKey.h" #include "screen_world.h" #include "screen_setting.h" #include "layer.h" @@ -44,6 +44,7 @@ void hotkey_splitArena() } } +#ifndef PUBLIC_SERVER void initArena() { splitType = SCREEN_SPLIT_VERTICAL; @@ -67,6 +68,7 @@ void quitArena() { unregisterHotKey(SDLK_F3); } +#endif arena_t* newArena(int w, int h) { |