diff options
author | athrxx | 2019-11-01 20:37:11 +0100 |
---|---|---|
committer | athrxx | 2019-12-18 20:50:39 +0100 |
commit | 1083b94cbfbf687b40d487ab2530be9fb1556b1a (patch) | |
tree | 75de1ac1426d96dfa20e0055ef98bdc39c0648f6 /audio | |
parent | 900dcc4de57e68ed11409de13138adb3ca549814 (diff) | |
download | scummvm-rg350-1083b94cbfbf687b40d487ab2530be9fb1556b1a.tar.gz scummvm-rg350-1083b94cbfbf687b40d487ab2530be9fb1556b1a.tar.bz2 scummvm-rg350-1083b94cbfbf687b40d487ab2530be9fb1556b1a.zip |
AUDIO: (FM-TOWNS/PC-98) - set enum members to fixed values
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); |