From 1083b94cbfbf687b40d487ab2530be9fb1556b1a Mon Sep 17 00:00:00 2001 From: athrxx Date: Fri, 1 Nov 2019 20:37:11 +0100 Subject: AUDIO: (FM-TOWNS/PC-98) - set enum members to fixed values --- audio/softsynth/fmtowns_pc98/pc98_audio.h | 6 +++--- audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'audio/softsynth') 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); -- cgit v1.2.3