diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-27 14:52:10 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-27 14:52:10 +0300 |
commit | 45949cf0fbade4f211520926c5e839c68cd01fbb (patch) | |
tree | df264bef9f6876c65d3e1905e374b15739c8f655 /src/actions/actions.h | |
parent | d003da4b7bbf1b37f95c2e8e761fbe3e54b25c7a (diff) | |
download | plus-45949cf0fbade4f211520926c5e839c68cd01fbb.tar.gz plus-45949cf0fbade4f211520926c5e839c68cd01fbb.tar.bz2 plus-45949cf0fbade4f211520926c5e839c68cd01fbb.tar.xz plus-45949cf0fbade4f211520926c5e839c68cd01fbb.zip |
Move chat command /testsdlfont into actions.
Diffstat (limited to 'src/actions/actions.h')
-rw-r--r-- | src/actions/actions.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/actions/actions.h b/src/actions/actions.h index 7a8217570..f3c58da54 100644 --- a/src/actions/actions.h +++ b/src/actions/actions.h @@ -21,6 +21,8 @@ #ifndef ACTIONS_ACTIONS_H #define ACTIONS_ACTIONS_H +#include "localconsts.h" + #define decHandler(name) bool name(InputEvent &event) struct InputEvent; @@ -78,6 +80,9 @@ namespace Actions decHandler(dumpOGL); decHandler(dumpGL); decHandler(dumpMods); +#if defined USE_OPENGL && defined DEBUG_SDLFONT + decHandler(testSdlFont); +#endif } // namespace Actions #undef decHandler |