diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/src/sound.lua | 6 | ||||
-rw-r--r-- | scripts/target/mame/tiny.lua | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua index feba44c426b..59ebe104b2e 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -1122,11 +1122,11 @@ end --------------------------------------------------- -- Votrax SC-01[-A] speech synthesizer ---@src/devices/sound/votrax.h,SOUNDS["SC01"] = true ---@src/devices/sound/votrax.h,SOUNDS["SC01A"] = true +--@src/devices/sound/votrax.h,SOUNDS["VOTRAX_SC01"] = true +--@src/devices/sound/votrax.h,SOUNDS["VOTRAX_SC01A"] = true --------------------------------------------------- -if (SOUNDS["SC01"]~=null or SOUNDS["SC01A"]~=null) then +if (SOUNDS["VOTRAX_SC01"]~=null or SOUNDS["VOTRAX_SC01A"]~=null) then files { MAME_DIR .. "src/devices/sound/votrax.cpp", MAME_DIR .. "src/devices/sound/votrax.h", diff --git a/scripts/target/mame/tiny.lua b/scripts/target/mame/tiny.lua index 207277697e7..0dc81ccf679 100644 --- a/scripts/target/mame/tiny.lua +++ b/scripts/target/mame/tiny.lua @@ -40,8 +40,8 @@ SOUNDS["DISCRETE"] = true SOUNDS["HC55516"] = true SOUNDS["OKIM6295"] = true SOUNDS["SAMPLES"] = true -SOUNDS["SC01"] = true SOUNDS["TMS5220"] = true +SOUNDS["VOTRAX_SC01"] = true SOUNDS["YM2151"] = true SOUNDS["YM3812"] = true |