summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src
diff options
context:
space:
mode:
author MooglyGuy <therealmogminer@gmail.com>2020-03-01 19:58:07 +0100
committer MooglyGuy <therealmogminer@gmail.com>2020-03-01 19:58:07 +0100
commitbcefd9527534b1197cd28b45dec4dec95ce3ee50 (patch)
treeac814b6f389b8e5ab520c3f6e96ab191230d5035 /scripts/src
parentfd0af1342209a7a32cc773a004fdc8a6ae30b66b (diff)
-vgmplay: Added a visualizer. [Ryan Holtz, Justin Frankel]
Diffstat (limited to 'scripts/src')
-rw-r--r--scripts/src/sound.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua
index 88b26e71285..d1028cceeb6 100644
--- a/scripts/src/sound.lua
+++ b/scripts/src/sound.lua
@@ -1541,3 +1541,17 @@ if (SOUNDS["SWP30"]~=null) then
MAME_DIR .. "src/devices/sound/swp30.h",
}
end
+
+---------------------------------------------------
+--
+--@src/devices/sound/vgm_visualizer.h,SOUNDS["VGMVIZ"] = true
+---------------------------------------------------
+
+if (SOUNDS["VGMVIZ"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/sound/vgm_visualizer.cpp",
+ MAME_DIR .. "src/devices/sound/vgm_visualizer.h",
+ MAME_DIR .. "src/devices/sound/fft.cpp",
+ MAME_DIR .. "src/devices/sound/fft.h",
+ }
+end