From 06e1ebb63098426886da501355e66e1565cf2b38 Mon Sep 17 00:00:00 2001 From: "R. Belmont" Date: Fri, 2 Oct 2009 02:21:12 +0000 Subject: [PATCH] Fix GCC compiler error --- src/mame/audio/mario.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/audio/mario.c b/src/mame/audio/mario.c index 775b6fddfe9..55f025abc61 100644 --- a/src/mame/audio/mario.c +++ b/src/mame/audio/mario.c @@ -140,7 +140,7 @@ * where calculated using least square approximation. * This approach gives a bit better results compared to the first approach. */ -//#define LS624_F(_C, _VI, _VR) pow10( -0.912029404 * log10(_C) + 0.243264328 * (_VI) \ +//#define LS624_F(_C, _VI, _VR) pow10( -0.912029404 * log10(_C) + 0.243264328 * (_VI) // - 0.091695877 * (_VR) -0.014110946 * (_VI) * (_VR) - 3.207072925) #define LS624_F(_in, _num) pow10(context->k1_##_num + 0.243264328 * (_in) + context->k2_##_num * (_in))