[Scummvm-cvs-logs] CVS: scummvm/base gameDetector.cpp,1.82,1.83

Pawel Kolodziejski aquadran at users.sourceforge.net
Sun Sep 12 07:22:01 CEST 2004


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

Modified Files:
	gameDetector.cpp 
Log Message:
fixed endlines

Index: gameDetector.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/base/gameDetector.cpp,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -d -r1.82 -r1.83
--- gameDetector.cpp	12 Sep 2004 10:45:15 -0000	1.82
+++ gameDetector.cpp	12 Sep 2004 14:20:56 -0000	1.83
@@ -1,635 +1,635 @@
-/* ScummVM - Scumm Interpreter

- * Copyright (C) 2001  Ludvig Strigeus

- * Copyright (C) 2001-2004 The ScummVM project

- *

- * This program is free software; you can redistribute it and/or

- * modify it under the terms of the GNU General Public License

- * as published by the Free Software Foundation; either version 2

- * of the License, or (at your option) any later version.

-

- * This program is distributed in the hope that it will be useful,

- * but WITHOUT ANY WARRANTY; without even the implied warranty of

[...1239 lines suppressed...]
+#if defined(__MORPHOS__)
+	case MD_ETUDE:     return MidiDriver_ETUDE_create();
+#endif
+#if defined(UNIX) && !defined(__BEOS__) && !defined(MACOSX)
+	case MD_SEQ:       return MidiDriver_SEQ_create();
+#endif
+#if (defined(MACOSX) || defined(macintosh)) && !defined(__PALM_OS__)
+	case MD_QTMUSIC:   return MidiDriver_QT_create();
+#endif
+#if defined(MACOSX)
+	case MD_COREAUDIO: return MidiDriver_CORE_create();
+#endif
+#if defined(UNIX) && defined(USE_ALSA)
+	case MD_ALSA:      return MidiDriver_ALSA_create();
+#endif
+	}
+
+	error("Invalid midi driver selected");
+	return NULL;
+}





More information about the Scummvm-git-logs mailing list