diff options
author | chai <chaifix@163.com> | 2018-09-08 13:09:06 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-09-08 13:09:06 +0800 |
commit | 4798e70dcbbedb55de8e9f8e321e8fad7b9783f6 (patch) | |
tree | f4740d59b561163b260f2f29467cfffdd92c4d9e /src/libjin/Input/Mouse.cpp | |
parent | 36f7e3e5542f3cfee11b34ce497fcb877b3462bf (diff) |
*update
Diffstat (limited to 'src/libjin/Input/Mouse.cpp')
-rw-r--r-- | src/libjin/Input/Mouse.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libjin/Input/Mouse.cpp b/src/libjin/Input/Mouse.cpp index e284f78..892d140 100644 --- a/src/libjin/Input/Mouse.cpp +++ b/src/libjin/Input/Mouse.cpp @@ -1,5 +1,5 @@ #include "../modules.h" -#ifdef JIN_MODULES_INPUT +#ifdef LIBJIN_MODULES_INPUT #include "SDL.h" #include "Mouse.h" @@ -11,9 +11,9 @@ namespace input void Mouse::getState(int* x, int* y) { - #ifdef JIN_INPUT_SDL + #ifdef LIBJIN_INPUT_SDL SDL_GetMouseState(x, y); - #endif // JIN_INPUT_SDL + #endif // LIBJIN_INPUT_SDL } void Mouse::setVisible(bool visible) @@ -24,4 +24,4 @@ namespace input } // input } // jin -#endif // JIN_MODULES_INPUT
\ No newline at end of file +#endif // LIBJIN_MODULES_INPUT
\ No newline at end of file |