summaryrefslogtreecommitdiff
path: root/src/gui/gui.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-03-03 18:21:45 +0300
committerAndrei Karas <akaras@inbox.ru>2014-03-03 18:21:45 +0300
commit37241d3f8552e1bdbd4b966fb95d7e9df1546994 (patch)
treee55aea10d923d85b8eaa4a04a78c8de4aff0f80d /src/gui/gui.cpp
parent2740b416b99855e0b411b06dce2fc1eb4fa93f2c (diff)
downloadManaVerse-37241d3f8552e1bdbd4b966fb95d7e9df1546994.tar.gz
ManaVerse-37241d3f8552e1bdbd4b966fb95d7e9df1546994.tar.bz2
ManaVerse-37241d3f8552e1bdbd4b966fb95d7e9df1546994.tar.xz
ManaVerse-37241d3f8552e1bdbd4b966fb95d7e9df1546994.zip
Remove 2 from methods name in sdlinput.
Diffstat (limited to 'src/gui/gui.cpp')
-rw-r--r--src/gui/gui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp
index b897655e2..0b0290be4 100644
--- a/src/gui/gui.cpp
+++ b/src/gui/gui.cpp
@@ -426,7 +426,7 @@ bool Gui::handleKeyInput()
while (!mInput->isKeyQueueEmpty())
{
- const KeyInput keyInput = guiInput->dequeueKeyInput2();
+ const KeyInput keyInput = guiInput->dequeueKeyInput();
// Save modifiers state
mShiftPressed = keyInput.isShiftPressed();
@@ -988,7 +988,7 @@ void Gui::handleMouseInput()
BLOCK_START("Gui::handleMouseInput")
while (!mInput->isMouseQueueEmpty())
{
- const MouseInput mouseInput = guiInput->dequeueMouseInput2();
+ const MouseInput mouseInput = guiInput->dequeueMouseInput();
if (touchManager.processEvent(mouseInput))
{