2002-12-08 20:19:01 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
2003-03-06 21:46:56 +00:00
|
|
|
* Copyright (C) 2001-2003 The ScummVM project
|
2002-12-08 20:19:01 +00:00
|
|
|
*
|
|
|
|
* 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$
|
|
|
|
*/
|
|
|
|
|
2002-12-09 02:40:22 +00:00
|
|
|
#include "stdafx.h"
|
2002-12-08 20:19:01 +00:00
|
|
|
#include "sound/mpu401.h"
|
|
|
|
#include "common/engine.h" // for warning/error/debug
|
|
|
|
|
|
|
|
/* NULL driver */
|
|
|
|
class MidiDriver_NULL : public MidiDriver_MPU401 {
|
|
|
|
public:
|
2002-12-11 16:09:58 +00:00
|
|
|
int open();
|
2002-12-08 20:19:01 +00:00
|
|
|
void send(uint32 b) { }
|
|
|
|
};
|
|
|
|
|
2003-03-06 18:30:44 +00:00
|
|
|
int MidiDriver_NULL::open() {
|
2002-12-08 20:19:01 +00:00
|
|
|
warning("Music not enabled - MIDI support selected with no MIDI driver available. Try Adlib");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-06 18:30:44 +00:00
|
|
|
MidiDriver *MidiDriver_NULL_create() {
|
2002-12-08 20:19:01 +00:00
|
|
|
return new MidiDriver_NULL();
|
|
|
|
}
|