aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorChris Apers2004-10-22 12:05:18 +0000
committerChris Apers2004-10-22 12:05:18 +0000
commit2398753140469df11c5ffd5501963724f2fff358 (patch)
tree798ca0e9ec612353f8b72f90ba1fad64b8e893c7 /backends
parent5f7f3dc0d2f80cc422514c01c28bbaf00fa584a7 (diff)
downloadscummvm-rg350-2398753140469df11c5ffd5501963724f2fff358.tar.gz
scummvm-rg350-2398753140469df11c5ffd5501963724f2fff358.tar.bz2
scummvm-rg350-2398753140469df11c5ffd5501963724f2fff358.zip
Prepare true AdLib support on PalmOS
svn-id: r15648
Diffstat (limited to 'backends')
-rw-r--r--backends/PalmOS/Src/midi/adlib.cpp39
1 files changed, 0 insertions, 39 deletions
diff --git a/backends/PalmOS/Src/midi/adlib.cpp b/backends/PalmOS/Src/midi/adlib.cpp
deleted file mode 100644
index a794bf0afd..0000000000
--- a/backends/PalmOS/Src/midi/adlib.cpp
+++ /dev/null
@@ -1,39 +0,0 @@
-/* ScummVM - Scumm Interpreter
- * 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
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- *
- * $Header$
- */
-
-#include "stdafx.h"
-#include "sound/mpu401.h"
-
-/* NULL driver */
-class MidiDriver_ADLIB : public MidiDriver_MPU401 {
-public:
- int open() { return 0; }
- void send(uint32 b) { }
-};
-
-MidiDriver *MidiDriver_ADLIB_create(SoundMixer *mixer) {
- return new MidiDriver_ADLIB();
-}
-
-#ifdef DISABLE_TAPWAVE
-MidiDriver *MidiDriver_Zodiac_create() {
- return new MidiDriver_ADLIB();
-}
-#endif \ No newline at end of file