summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/etc
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-12-12 08:58:57 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-12-12 08:58:57 +0100
commit379581fb3690d92f7e3815534a479823aee8ddcc (patch)
tree77b4a080ba46ba58bfd8382926580cb2aad5a69d /src/mame/etc
parentafe2bbe6481acf518e384509586ada235e106c54 (diff)
macro removal INLINE -> static inline (nw)
Diffstat (limited to 'src/mame/etc')
-rw-r--r--src/mame/etc/jrcrypt.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/etc/jrcrypt.cpp b/src/mame/etc/jrcrypt.cpp
index b1244151243..e973df30753 100644
--- a/src/mame/etc/jrcrypt.cpp
+++ b/src/mame/etc/jrcrypt.cpp
@@ -147,11 +147,11 @@ unsigned jrpacman_decode_roms(int address)
return RAM[address]; // this should never happen!
}
#else
-INLINE WordBit(word theWord, int theBit)
+static inline WordBit(word theWord, int theBit)
{
return (theWord >> theBit)&1;
}
-INLINE ByteBit(byte theByte, int theBit)
+static inline ByteBit(byte theByte, int theBit)
{
return (theByte >> theBit)&1;
}