summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/sn76477.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/sn76477.cpp')
-rw-r--r--src/devices/sound/sn76477.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/sn76477.cpp b/src/devices/sound/sn76477.cpp
index af53b7bc7ab..bc89db04447 100644
--- a/src/devices/sound/sn76477.cpp
+++ b/src/devices/sound/sn76477.cpp
@@ -265,13 +265,13 @@ void sn76477_device::device_stop()
#undef max
#undef min
-INLINE double max(double a, double b)
+static inline double max(double a, double b)
{
return (a > b) ? a : b;
}
-INLINE double min(double a, double b)
+static inline double min(double a, double b)
{
return (a < b) ? a : b;
}