Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/game.cc')
-rw-r--r--src/game/game.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/game.cc b/src/game/game.cc
index 2945657..0d79195 100644
--- a/src/game/game.cc
+++ b/src/game/game.cc
@@ -23,8 +23,6 @@ void Game::init()
using math::Vector3f;
using filesystem::IniFile;
- con_debug << "Debug messages enabled" << std::endl;
-
// read game.ini
IniFile f;
f.open("ini/game.ini");
@@ -119,9 +117,11 @@ void Game::shutdown()
core::GameInterface::shutdown();
}
-void Game::frame(float elapsed)
+void Game::frame(float seconds)
{
- ship.update(elapsed);
+ GameInterface::frame(seconds);
+
+ ship.update(seconds);
}
}; // namespace game