aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system/ReplaySystem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/system/ReplaySystem.cpp')
-rw-r--r--src/crepe/system/ReplaySystem.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/crepe/system/ReplaySystem.cpp b/src/crepe/system/ReplaySystem.cpp
index 2b2e4ab..efc3be4 100644
--- a/src/crepe/system/ReplaySystem.cpp
+++ b/src/crepe/system/ReplaySystem.cpp
@@ -1,9 +1,9 @@
#include "../manager/ReplayManager.h"
#include "../manager/SystemManager.h"
+#include "EventSystem.h"
#include "RenderSystem.h"
#include "ReplaySystem.h"
-#include "EventSystem.h"
using namespace crepe;
using namespace std;
@@ -15,7 +15,8 @@ void ReplaySystem::fixed_update() {
this->last_state = state;
switch (state) {
- case ReplayManager::IDLE: break;
+ case ReplayManager::IDLE:
+ break;
case ReplayManager::RECORDING: {
replay.frame_record();
break;
@@ -51,4 +52,3 @@ void ReplaySystem::playback_end() {
components.restore(this->playback.components);
systems.restore(this->playback.systems);
}
-