summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/n64.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/n64.cpp')
-rw-r--r--src/mame/machine/n64.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/n64.cpp b/src/mame/machine/n64.cpp
index 91ce7e482e4..4918f1a1613 100644
--- a/src/mame/machine/n64.cpp
+++ b/src/mame/machine/n64.cpp
@@ -1739,7 +1739,7 @@ UINT8 n64_periphs::calc_mempak_crc(UINT8 *buffer, int length)
return crc;
}
-INLINE UINT8 convert_to_bcd(int val)
+static inline UINT8 convert_to_bcd(int val)
{
return ((val / 10) << 4) | (val % 10);
}