Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-07-21 22:57:08 +0000
committerStijn Buys <ingar@osirion.org>2008-07-21 22:57:08 +0000
commit2c7c599647773221fceacc1633b95e4b614b8af3 (patch)
tree4bc21e212fa19c7bce744644d3d78aa5cb3114e6 /src/client/input.cc
parent980c5c41dc8e88ab3e7a5751348a92a0662a2ea4 (diff)
unbindall, proper delete key support
Diffstat (limited to 'src/client/input.cc')
-rw-r--r--src/client/input.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client/input.cc b/src/client/input.cc
index 5e75f0a..dc40b8f 100644
--- a/src/client/input.cc
+++ b/src/client/input.cc
@@ -201,6 +201,9 @@ void init()
func = core::Func::add("unbind", func_unbind);
func->set_info("[key] unbind a key");
+ func = core::Func::add("unbindall", func_unbind);
+ func->set_info("unbind all keys");
+
func = core::Func::add("screenshot", func_screenshot);
func->set_info("make a screenshot");
@@ -216,6 +219,7 @@ void shutdown()
core::Func::remove("bind");
core::Func::remove("unbind");
+ core::Func::remove("unbindall");
core::Func::remove("screenshot");