mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-18 02:01:39 +00:00
718112a8fe
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.
19 lines
449 B
C
19 lines
449 B
C
// YM2612 FM sound chip emulator interface
|
|
|
|
// Game_Music_Emu https://bitbucket.org/mpyne/game-music-emu/
|
|
|
|
#ifdef VGM_YM2612_GENS // LGPL v2.1+ license
|
|
#include "Ym2612_GENS.h"
|
|
typedef Ym2612_GENS_Emu Ym2612_Emu;
|
|
#endif
|
|
|
|
#ifdef VGM_YM2612_NUKED // LGPL v2.1+ license
|
|
#include "Ym2612_Nuked.h"
|
|
typedef Ym2612_Nuked_Emu Ym2612_Emu;
|
|
#endif
|
|
|
|
#ifdef VGM_YM2612_MAME // GPL v2+ license
|
|
#include "Ym2612_MAME.h"
|
|
typedef Ym2612_MAME_Emu Ym2612_Emu;
|
|
#endif
|
|
|