mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-05 01:38:36 +00:00
Prepare true AdLib support on PalmOS
svn-id: r15648
This commit is contained in:
parent
5f7f3dc0d2
commit
2398753140
@ -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
|
Loading…
x
Reference in New Issue
Block a user