Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/application.cc')
-rw-r--r--src/core/application.cc8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/core/application.cc b/src/core/application.cc
index 3f08a36..3b30962 100644
--- a/src/core/application.cc
+++ b/src/core/application.cc
@@ -378,15 +378,11 @@ void Application::disconnect()
void Application::frame(float seconds)
{
+ application_time += seconds;
+
// execute commands in the buffer
CommandBuffer::exec();
- application_time += seconds;
-
- // don't run zero lenght time frames
- //if (seconds == 0.0f)
- // return;
-
if (!connected())
return;