[Scummvm-cvs-logs] CVS: scummvm/base gameDetector.cpp,1.107,1.108

Eugene Sandulenko sev at users.sourceforge.net
Tue Apr 12 17:13:29 CEST 2005


Update of /cvsroot/scummvm/scummvm/base
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29566/base

Modified Files:
	gameDetector.cpp 
Log Message:
Patches #1164217 "Updated GS Support + Percussion Remapping Patch" and
#1181750 "Updated Native MIDI documentation". Thanks _tom a lot.


Index: gameDetector.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/base/gameDetector.cpp,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -d -r1.107 -r1.108
--- gameDetector.cpp	10 Apr 2005 14:33:43 -0000	1.107
+++ gameDetector.cpp	13 Apr 2005 00:11:34 -0000	1.108
@@ -92,10 +92,11 @@
 	"  --platform=WORD          Specify version of game (allowed values: amiga,\n"
 	"                           atari, fmtowns, nes, mac, pc, windows)\n"
 	"  --savepath=PATH          Path to where savegames are stored\n"
-	"  --soundfont=FILE         Select the SoundFont for MIDI playback. (Only\n"
-	"                           supported by some MIDI drivers.)\n"
+	"  --soundfont=FILE         Select the SoundFont for MIDI playback (Only\n"
+	"                           supported by some MIDI drivers)\n"
 	"  --multi-midi             Enable combination Adlib and native MIDI\n"
 	"  --native-mt32            True Roland MT-32 (disable GM emulation)\n"
+	"  --enable-gs              Enable Roland GS mode for MIDI playback\n"
 	"  --output-rate=RATE       Select output sample rate in Hz (e.g. 22050)\n"
 	"  --aspect-ratio           Enable aspect ratio correction\n"
 	"  --render-mode=MODE       Enable additional render modes (cga, ega, hercGreen,\n"
@@ -136,6 +137,7 @@
 
 	ConfMan.registerDefault("multi_midi", false);
 	ConfMan.registerDefault("native_mt32", false);
+	ConfMan.registerDefault("enable_gs", false);
 //	ConfMan.registerDefault("music_driver", ???);
 
 	ConfMan.registerDefault("cdrom", 0);
@@ -486,6 +488,10 @@
 				ConfMan.set("native_mt32", cmdValue, kTransientDomain);
 			END_OPTION
 
+			DO_LONG_OPTION_BOOL("enable-gs")
+				ConfMan.set("enable_gs", cmdValue, kTransientDomain);
+			END_OPTION
+
 			DO_LONG_OPTION_BOOL("aspect-ratio")
 				ConfMan.set("aspect_ratio", cmdValue, kTransientDomain);
 			END_OPTION





More information about the Scummvm-git-logs mailing list