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

Chris Apers chrilith at users.sourceforge.net
Sun Sep 12 03:46:01 CEST 2004


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

Modified Files:
	gameDetector.cpp 
Log Message:
Enable Zodiac driver

Index: gameDetector.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/base/gameDetector.cpp,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -d -r1.81 -r1.82
--- gameDetector.cpp	14 Aug 2004 19:11:20 -0000	1.81
+++ gameDetector.cpp	12 Sep 2004 10:45:15 -0000	1.82
@@ -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