From 379581fb3690d92f7e3815534a479823aee8ddcc Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sat, 12 Dec 2015 08:58:57 +0100 Subject: macro removal INLINE -> static inline (nw) --- src/mame/video/model3.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mame/video/model3.cpp') diff --git a/src/mame/video/model3.cpp b/src/mame/video/model3.cpp index 4cea4a5a2e7..9e1e60be5d8 100644 --- a/src/mame/video/model3.cpp +++ b/src/mame/video/model3.cpp @@ -1312,7 +1312,7 @@ WRITE64_MEMBER(model3_state::real3d_cmd_w) /*****************************************************************************/ /* matrix and vector operations */ -INLINE float dot_product3(VECTOR3 a, VECTOR3 b) +static inline float dot_product3(VECTOR3 a, VECTOR3 b) { return (a[0] * b[0]) + (a[1] * b[1]) + (a[2] * b[2]); } -- cgit v1.2.3