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-02-17 18:59:52 +0000
committerStijn Buys <ingar@osirion.org>2008-02-17 18:59:52 +0000
commit982562fa19bb87a3dab352e562f386f61c171b7b (patch)
treeaeade8d5b7d3c68f5c222af1d8ecc6a734e1b43f /src/client/console.cc
parentd198b7b8d9ff713d891f35ab173d1f428f610e7d (diff)
major rewrite of Cvar, Func and Entity
Diffstat (limited to 'src/client/console.cc')
-rw-r--r--src/client/console.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/console.cc b/src/client/console.cc
index c352969..5fb382e 100644
--- a/src/client/console.cc
+++ b/src/client/console.cc
@@ -76,7 +76,7 @@ void init()
console_visible = false;
// add engine functions
- core::func::add("con_toggle", func_con_toggle);
+ core::Func::add("con_toggle", (core::FuncPtr) func_con_toggle);
text.clear();
console_scroll = 0;
@@ -96,7 +96,7 @@ void shutdown()
save_history();
// remove engine functions
- core::func::remove("con_toggle");
+ core::Func::remove("con_toggle");
text.clear();
console_scroll = 0;
@@ -209,7 +209,7 @@ void keypressed(const SDL_keysym &keysym)
switch( keysym.sym ) {
case SDLK_TAB:
- core::commandbuffer::complete( (*history_pos), input_pos);
+ core::CommandBuffer::complete( (*history_pos), input_pos);
break;
case SDLK_RETURN:
if ((*history_pos).size()) {
@@ -218,7 +218,7 @@ void keypressed(const SDL_keysym &keysym)
history.pop_front();
}
- core::cmd << (*history_pos) << std::endl;
+ core::cmd() << (*history_pos) << std::endl;
(*history.rbegin()) = (*history_pos);
history.push_back("");