summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/k053260.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/k053260.cpp')
-rw-r--r--src/devices/sound/k053260.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/k053260.cpp b/src/devices/sound/k053260.cpp
index 434d352635c..134598a1f7c 100644
--- a/src/devices/sound/k053260.cpp
+++ b/src/devices/sound/k053260.cpp
@@ -247,7 +247,7 @@ WRITE8_MEMBER( k053260_device::write )
}
-INLINE int limit( int val, int max, int min )
+static inline int limit( int val, int max, int min )
{
if ( val > max )
val = max;