diff options
author | chai <chaifix@163.com> | 2018-10-21 16:21:16 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-10-21 16:21:16 +0800 |
commit | 07770f3ad369ff47386310b731d349f7af1fe0d9 (patch) | |
tree | 7547b1a8b2beaceb31ea1b62edbdaa5cd6a1b247 /src/libjin/Input/je_event.h | |
parent | 066e5987c515dfc34537d73ca9d2a81ddd1f9e1b (diff) |
*修改编译控制
Diffstat (limited to 'src/libjin/Input/je_event.h')
-rw-r--r-- | src/libjin/Input/je_event.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libjin/Input/je_event.h b/src/libjin/Input/je_event.h index 2e87dc9..126d0f6 100644 --- a/src/libjin/Input/je_event.h +++ b/src/libjin/Input/je_event.h @@ -1,13 +1,13 @@ #ifndef __JE_EVENT_H #define __JE_EVENT_H #include "../core/je_configuration.h" -#if LIBJIN_MODULES_INPUT +#if defined(jin_input) namespace JinEngine { namespace Input { - #if LIBJIN_INPUT_SDL + #if jin_input == jin_input_sdl #include "SDL.h" typedef SDL_Event Event; @@ -112,10 +112,10 @@ namespace JinEngine } */ - #endif // LIBJIN_INPUT_SDL + #endif // jin_input == jin_input_sdl } // namespace Input } // namespace JinEngine -#endif // LIBJIN_MODULES_INPUT +#endif // defined(jin_input) #endif // __JE_EVENT_H
\ No newline at end of file |