From ed144aac3d1f18530cf192fe659f6450a7ba7822 Mon Sep 17 00:00:00 2001 From: David Capello Date: Thu, 9 Apr 2015 11:36:22 -0300 Subject: [PATCH] Fix member initialization order in PlayState --- src/app/ui/editor/play_state.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/ui/editor/play_state.cpp b/src/app/ui/editor/play_state.cpp index 13e6a62d2..dc8a294d0 100644 --- a/src/app/ui/editor/play_state.cpp +++ b/src/app/ui/editor/play_state.cpp @@ -24,8 +24,8 @@ using namespace ui; PlayState::PlayState() : m_playTimer(10) - , m_pingPongForward(true) , m_nextFrameTime(-1) + , m_pingPongForward(true) { }