Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/main.cc')
-rw-r--r--src/client/main.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/client/main.cc b/src/client/main.cc
index 696c02f..76f7277 100644
--- a/src/client/main.cc
+++ b/src/client/main.cc
@@ -27,13 +27,13 @@ int main( int argc, char *argv[] )
std::cout << "Project::OSiRiON " << OSIRION_VERSION << std::endl;
// Initialize the video subsystem
- video::init();
- if (!video::initialized) {
+ client::Video::init();
+ if (!client::Video::initialized) {
quit(1);
}
// initialize input
- input::init();
+ client::Input::init();
// initialize game
game::init();
@@ -52,14 +52,14 @@ int main( int argc, char *argv[] )
game::update(elapsed);
// update the video chronometers and draw
- video::draw(elapsed);
+ client::Video::draw(elapsed);
startup = chrono;
// process input
- input::process();
+ client::Input::process();
}
- video::shutdown();
+ client::Video::shutdown();
quit(0);
}