aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 {