diff options
Diffstat (limited to 'audio')
-rw-r--r-- | audio/softsynth/fmtowns_pc98/pc98_audio.h | 6 | ||||
-rw-r--r-- | audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/audio/softsynth/fmtowns_pc98/pc98_audio.h b/audio/softsynth/fmtowns_pc98/pc98_audio.h index 2bfae78cd4..30950e4882 100644 --- a/audio/softsynth/fmtowns_pc98/pc98_audio.h +++ b/audio/softsynth/fmtowns_pc98/pc98_audio.h @@ -33,9 +33,9 @@ class PC98AudioCoreInternal; class PC98AudioPluginDriver { public: enum EmuType { - kTypeTowns, - kType26, - kType86 + kTypeTowns = 0, + kType26 = 1, + kType86 = 2 }; virtual ~PC98AudioPluginDriver() {} diff --git a/audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.h b/audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.h index 05f83867bf..dea7d9f84b 100644 --- a/audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.h +++ b/audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.h @@ -68,9 +68,9 @@ enum EnvelopeState { class TownsPC98_FmSynth : public Audio::AudioStream { public: enum EmuType { - kTypeTowns, - kType26, - kType86 + kTypeTowns = 0, + kType26 = 1, + kType86 = 2 }; TownsPC98_FmSynth(Audio::Mixer *mixer, EmuType type); |