diff options
author | Torbjörn Andersson | 2003-10-11 12:21:48 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2003-10-11 12:21:48 +0000 |
commit | 650581eef80bcf2fbe5bb55218ae329a8673498e (patch) | |
tree | ef62c2fa2a9792d416169e461340c4a2e94dd514 | |
parent | a259809540ad494dc9d0126bc6125da63d5da043 (diff) | |
download | scummvm-rg350-650581eef80bcf2fbe5bb55218ae329a8673498e.tar.gz scummvm-rg350-650581eef80bcf2fbe5bb55218ae329a8673498e.tar.bz2 scummvm-rg350-650581eef80bcf2fbe5bb55218ae329a8673498e.zip |
Fix warning
svn-id: r10733
-rw-r--r-- | queen/cutaway.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/queen/cutaway.cpp b/queen/cutaway.cpp index a3c3914d3d..fd93b40d87 100644 --- a/queen/cutaway.cpp +++ b/queen/cutaway.cpp @@ -70,7 +70,7 @@ Cutaway::Cutaway( Graphics *graphics, Logic *logic, Resource *resource) -: _graphics(graphics), _logic(logic), _resource(resource), _quit(false), _lastSong(0), _songBeforeComic(0) { +: _logic(logic), _resource(resource), _graphics(graphics), _quit(false), _lastSong(0), _songBeforeComic(0) { memset(&_bankNames, 0, sizeof(_bankNames)); load(filename); } |