aboutsummaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorBertrand Augereau2004-07-19 11:35:29 +0000
committerBertrand Augereau2004-07-19 11:35:29 +0000
commit23c17eb9c6d584a5f4e652bbf9453843b182683f (patch)
tree8b76cea64e1f9011366ae6c5e36bfd43e43414d9 /graphics
parent9e7f2342c75d37a05797a1a47bdaf43a6add1fc2 (diff)
downloadscummvm-rg350-23c17eb9c6d584a5f4e652bbf9453843b182683f.tar.gz
scummvm-rg350-23c17eb9c6d584a5f4e652bbf9453843b182683f.tar.bz2
scummvm-rg350-23c17eb9c6d584a5f4e652bbf9453843b182683f.zip
Changed order of initialisation in BaseAnimationState::BaseAnimationState() to match order of declaration, to avoid a pedantic warning
svn-id: r14275
Diffstat (limited to 'graphics')
-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() {