raze-gles/libraries/game-music-emu/gme/Ym2413_Emu.cpp
Christoph Oelckers 718112a8fe - added external libraries for music format playback and decompression from GZDoom.
Currently none of these is being used, but eventually they will, once more code gets ported over.
So it's better to have them right away and avoid editing the project file too much, only to revert that later.
2019-09-22 08:59:48 +02:00

21 lines
444 B
C++

// Use in place of Ym2413_Emu.cpp and ym2413.c to disable support for this chip
// Game_Music_Emu https://bitbucket.org/mpyne/game-music-emu/
#include "Ym2413_Emu.h"
Ym2413_Emu::Ym2413_Emu() { }
Ym2413_Emu::~Ym2413_Emu() { }
int Ym2413_Emu::set_rate( double, double ) { return 2; }
void Ym2413_Emu::reset() { }
void Ym2413_Emu::write( int, int ) { }
void Ym2413_Emu::mute_voices( int ) { }
void Ym2413_Emu::run( int, sample_t* ) { }