aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--graphics/animation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/animation.cpp b/graphics/animation.cpp
index c5dcef267e..32468fd6bd 100644
--- a/graphics/animation.cpp
+++ b/graphics/animation.cpp
@@ -28,7 +28,7 @@
namespace Graphics {
BaseAnimationState::BaseAnimationState(SoundMixer *snd, OSystem *sys, int width, int height)
- : _snd(snd), _sys(sys), MOVIE_WIDTH(width), MOVIE_HEIGHT(height) {
+ : MOVIE_WIDTH(width), MOVIE_HEIGHT(height), _snd(snd), _sys(sys) {
}
BaseAnimationState::~BaseAnimationState() {