summaryrefslogtreecommitdiff
path: root/src/gui/sdlinput.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/sdlinput.cpp')
-rw-r--r--src/gui/sdlinput.cpp12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/gui/sdlinput.cpp b/src/gui/sdlinput.cpp
index bcc53ccf..8396418c 100644
--- a/src/gui/sdlinput.cpp
+++ b/src/gui/sdlinput.cpp
@@ -60,9 +60,7 @@
#include <guichan/exception.hpp>
-SDLInput::SDLInput()
-{
-}
+SDLInput::SDLInput() = default;
bool SDLInput::isKeyQueueEmpty()
{
@@ -220,8 +218,6 @@ void SDLInput::pushInput(SDL_Event event)
if ((event.active.state & SDL_APPMOUSEFOCUS)
&& !event.active.gain)
{
- mMouseInWindow = false;
-
if (!mMouseDown)
{
mouseInput.setX(-1);
@@ -231,12 +227,6 @@ void SDLInput::pushInput(SDL_Event event)
mMouseInputQueue.push(mouseInput);
}
}
-
- if ((event.active.state & SDL_APPMOUSEFOCUS)
- && event.active.gain)
- {
- mMouseInWindow = true;
- }
break;
#endif
} // end switch