summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-09-28 10:20:06 -0400
committer AJR <ajrhacker@users.noreply.github.com>2020-09-28 10:20:06 -0400
commit84d4b2ab676f9a847885d9e358750a1bb8444662 (patch)
treea95d09502d75c9771d5d66a121231468e28d0ba8 /src/mame/audio
parentdfe9d6ff8edeb1a295398177c5b7705218a561f3 (diff)
Fix clang build [-Werror,-Wunused-const-variable]
Diffstat (limited to 'src/mame/audio')
-rw-r--r--src/mame/audio/gomoku.cpp2
-rw-r--r--src/mame/audio/wiping.cpp2
2 files changed, 0 insertions, 4 deletions
diff --git a/src/mame/audio/gomoku.cpp b/src/mame/audio/gomoku.cpp
index 2b0d936bbd7..632b016441e 100644
--- a/src/mame/audio/gomoku.cpp
+++ b/src/mame/audio/gomoku.cpp
@@ -11,8 +11,6 @@
#include "emu.h"
#include "audio/gomoku.h"
-constexpr int DEFGAIN = 48;
-
// device type definition
DEFINE_DEVICE_TYPE(GOMOKU_SOUND, gomoku_sound_device, "gomoku_sound", "Gomoku Narabe Renju Custom Sound")
diff --git a/src/mame/audio/wiping.cpp b/src/mame/audio/wiping.cpp
index c5b667c3047..3ce7f02e096 100644
--- a/src/mame/audio/wiping.cpp
+++ b/src/mame/audio/wiping.cpp
@@ -11,8 +11,6 @@
#include "emu.h"
#include "audio/wiping.h"
-static constexpr int defgain = 48;
-
DEFINE_DEVICE_TYPE(WIPING_CUSTOM, wiping_sound_device, "wiping_sound", "Wiping Custom Sound")
wiping_sound_device::wiping_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)