summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2009-10-02 02:21:12 +0000
committer R. Belmont <rb6502@users.noreply.github.com>2009-10-02 02:21:12 +0000
commit06e1ebb63098426886da501355e66e1565cf2b38 (patch)
treea85a01fc2910d7fec2adc56a0cdf8e53c57ec1ef
parent9ca9d3041953e5b7f93cf59ffc01dac8f3adf9a0 (diff)
Fix GCC compiler error
-rw-r--r--src/mame/audio/mario.c2
1 files changed, 1 insertions, 1 deletions
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))