[Scummvm-cvs-logs] SF.net SVN: scummvm:[46300] scummvm/trunk/engines/sci/sfx/soundcmd.h
lordhoto at users.sourceforge.net
lordhoto at users.sourceforge.net
Tue Dec 8 23:08:33 CET 2009
Revision: 46300
http://scummvm.svn.sourceforge.net/scummvm/?rev=46300&view=rev
Author: lordhoto
Date: 2009-12-08 22:08:33 +0000 (Tue, 08 Dec 2009)
Log Message:
-----------
Attempt to fix MSVC warning C4121.
Modified Paths:
--------------
scummvm/trunk/engines/sci/sfx/soundcmd.h
Modified: scummvm/trunk/engines/sci/sfx/soundcmd.h
===================================================================
--- scummvm/trunk/engines/sci/sfx/soundcmd.h 2009-12-08 22:07:17 UTC (rev 46299)
+++ scummvm/trunk/engines/sci/sfx/soundcmd.h 2009-12-08 22:08:33 UTC (rev 46300)
@@ -36,9 +36,9 @@
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 {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list