diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-02-13 14:32:36 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-02-13 14:32:36 +0000 |
commit | 4b2a028c8002609bd9256d1f8fd73aceee5c44fc (patch) | |
tree | 7fea11c221b5bd44a8c3cbf17643a3637e229493 /src/gui/login.cpp | |
parent | 821732ebbc2760ec98e0097f38a962c67285d421 (diff) | |
download | mana-4b2a028c8002609bd9256d1f8fd73aceee5c44fc.tar.gz mana-4b2a028c8002609bd9256d1f8fd73aceee5c44fc.tar.bz2 mana-4b2a028c8002609bd9256d1f8fd73aceee5c44fc.tar.xz mana-4b2a028c8002609bd9256d1f8fd73aceee5c44fc.zip |
No need to keep track of mouse position ourselves. Also put default startup
mode to windowed.
Diffstat (limited to 'src/gui/login.cpp')
-rw-r--r-- | src/gui/login.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/gui/login.cpp b/src/gui/login.cpp index d0cfa899..5496c01b 100644 --- a/src/gui/login.cpp +++ b/src/gui/login.cpp @@ -147,12 +147,6 @@ void login() { state = EXIT; } break; - - case SDL_MOUSEMOTION: - // Update the known mouse position - mouseX = event.motion.x; - mouseY = event.motion.y; - break; } guiInput->pushInput(event); |