diff options
author | Johannes Schickel | 2009-12-08 22:08:33 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-12-08 22:08:33 +0000 |
commit | 5b136d2f1a491279f68e08d2b4b1d5de9c89bb97 (patch) | |
tree | b48fe321105f0047aa79a496dcf6d6f5139ceb3f /engines/sci | |
parent | e3d1d914ac88036a8a2a627f8448110ea04e5f1a (diff) | |
download | scummvm-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/sci')
-rw-r--r-- | engines/sci/sfx/soundcmd.h | 4 |
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 { |