aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorJohannes Schickel2009-12-08 22:08:33 +0000
committerJohannes Schickel2009-12-08 22:08:33 +0000
commit5b136d2f1a491279f68e08d2b4b1d5de9c89bb97 (patch)
treeb48fe321105f0047aa79a496dcf6d6f5139ceb3f /engines
parente3d1d914ac88036a8a2a627f8448110ea04e5f1a (diff)
downloadscummvm-rg350-5b136d2f1a491279f68e08d2b4b1d5de9c89bb97.tar.gz
scummvm-rg350-5b136d2f1a491279f68e08d2b4b1d5de9c89bb97.tar.bz2
scummvm-rg350-5b136d2f1a491279f68e08d2b4b1d5de9c89bb97.zip
Attempt to fix MSVC warning C4121.
svn-id: r46300
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/sfx/soundcmd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/sfx/soundcmd.h b/engines/sci/sfx/soundcmd.h
index c4d2cdb15d..ac5f615f5a 100644
--- a/engines/sci/sfx/soundcmd.h
+++ b/engines/sci/sfx/soundcmd.h
@@ -36,9 +36,9 @@ class SoundCommandParser;
typedef void (SoundCommandParser::*SoundCommand)(reg_t obj, SongHandle handle, int value);
struct SciSoundCommand {
- SciSoundCommand(const char* d, SoundCommand c) : desc(d), sndCmd(c) {}
- const char* desc;
+ SciSoundCommand(const char *d, SoundCommand c) : sndCmd(c), desc(d) {}
SoundCommand sndCmd;
+ const char *desc;
};
class SoundCommandParser {