diff options
author | Bertrand Augereau | 2004-07-19 11:35:29 +0000 |
---|---|---|
committer | Bertrand Augereau | 2004-07-19 11:35:29 +0000 |
commit | 23c17eb9c6d584a5f4e652bbf9453843b182683f (patch) | |
tree | 8b76cea64e1f9011366ae6c5e36bfd43e43414d9 /graphics | |
parent | 9e7f2342c75d37a05797a1a47bdaf43a6add1fc2 (diff) | |
download | scummvm-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.cpp | 2 |
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() { |