diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-02-07 18:15:34 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-02-07 18:15:34 +0300 |
commit | f86a584d8f19a06d06acaef3ad1f9d3eef4690ad (patch) | |
tree | 0c8574417ea7b77bb464e93e3395b95178e3d94f /src/logger.h | |
parent | f29d4876505fd3fd8c5d2c115e2a790409b02289 (diff) | |
download | plus-f86a584d8f19a06d06acaef3ad1f9d3eef4690ad.tar.gz plus-f86a584d8f19a06d06acaef3ad1f9d3eef4690ad.tar.bz2 plus-f86a584d8f19a06d06acaef3ad1f9d3eef4690ad.tar.xz plus-f86a584d8f19a06d06acaef3ad1f9d3eef4690ad.zip |
Fix compilation with SDL2.
Diffstat (limited to 'src/logger.h')
-rw-r--r-- | src/logger.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/logger.h b/src/logger.h index 557116df2..aafe50428 100644 --- a/src/logger.h +++ b/src/logger.h @@ -23,6 +23,8 @@ #ifndef LOGGER_H #define LOGGER_H +#include "localconsts.h" + #ifdef USE_SDL2 PRAGMA45(GCC diagnostic push) PRAGMA45(GCC diagnostic ignored "-Wswitch-default") @@ -39,8 +41,6 @@ PRAGMA45(GCC diagnostic pop) #include <fstream> #include <vector> -#include "localconsts.h" - #ifdef ENABLEDEBUGLOG #define DEBUGLOG(str) \ if (logger && !mIgnore) \ |