diff options
author | Max Horn | 2009-05-26 14:09:07 +0000 |
---|---|---|
committer | Max Horn | 2009-05-26 14:09:07 +0000 |
commit | 7050c5065f875ef3a41312671ad4020444d7db87 (patch) | |
tree | 53bb1cbf838a2fd2ed296a18766d60fc934333c8 /engines/sci/sfx/device/devices.cpp | |
parent | 1d00cc5df09dd5fcacd3ea007b45ab33e6332e77 (diff) | |
download | scummvm-rg350-7050c5065f875ef3a41312671ad4020444d7db87.tar.gz scummvm-rg350-7050c5065f875ef3a41312671ad4020444d7db87.tar.bz2 scummvm-rg350-7050c5065f875ef3a41312671ad4020444d7db87.zip |
SCI: removed realtime and polled player, as well as the sfx/device dir, after discussion with Walter
svn-id: r40913
Diffstat (limited to 'engines/sci/sfx/device/devices.cpp')
-rw-r--r-- | engines/sci/sfx/device/devices.cpp | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/engines/sci/sfx/device/devices.cpp b/engines/sci/sfx/device/devices.cpp deleted file mode 100644 index c4a9f4808f..0000000000 --- a/engines/sci/sfx/device/devices.cpp +++ /dev/null @@ -1,78 +0,0 @@ -/* ScummVM - Graphic Adventure Engine - * - * ScummVM is the legal property of its developers, whose names - * are too numerous to list here. Please refer to the COPYRIGHT - * file distributed with this source distribution. - * - * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - * - * $URL$ - * $Id$ - * - */ - -#include "common/scummsys.h" -#include "sci/sfx/device.h" - -#include "sci/tools.h" - -namespace Sci { - -static struct _midi_device *devices_midi[] = { - NULL -}; - -static struct _midi_device *devices_opl2[] = { - NULL -}; - - -/** -- **/ - -struct _midi_device **devices[] = { - NULL, /* No device */ - devices_midi, - devices_opl2, -}; - -void *sfx_find_device(int type, char *name) { - struct _midi_device *dev = NULL; - int i = 0; - - if (!type) - return NULL; - - if (!name) { - dev = devices[type][0]; - } else { - while (devices[type][i] && !strcmp(name, devices[type][i]->name)) - ++i; - - dev = devices[type][i]; - } - - if (dev) { - if (dev->init(dev)) { - fprintf(stderr, "[SFX] Opening device '%s' failed\n", dev->name); - return NULL; - } - - return dev; - }; - - return NULL; -} - -} // End of namespace Sci |