summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorsapier <Sapier at GMX dot net>2014-04-20 10:55:08 +0200
committersapier <Sapier at GMX dot net>2014-04-20 10:55:08 +0200
commit5b1bd2fb4760e7d6f4a47e59839aa1b52c6c0f7a (patch)
tree6bdb0d81cb0547331e3aead9370f37e5b0623757 /src/main.cpp
parentfec1fa51e06185c81a4a69a0a88c1a6ccc68bce7 (diff)
downloadminetest-5b1bd2fb4760e7d6f4a47e59839aa1b52c6c0f7a.tar.gz
minetest-5b1bd2fb4760e7d6f4a47e59839aa1b52c6c0f7a.tar.bz2
minetest-5b1bd2fb4760e7d6f4a47e59839aa1b52c6c0f7a.zip
Fix chat console not working anymore
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 376ce2ae2..ddd55d1a4 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -266,7 +266,6 @@ public:
} else {
keyIsDown.unset(event.KeyInput);
}
- return true;
}
if(event.EventType == irr::EET_MOUSE_INPUT_EVENT)
@@ -305,7 +304,7 @@ public:
}
}
}
-
+ /* always return false in order to continue processing events */
return false;
}