From: ehofman Date: Sat, 28 Jun 2003 13:43:09 +0000 (+0000) Subject: Put the refference to fast_log() back in after checkit it actually works as expected X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=25ad84e5cbe8e40b15dbdc50f14c90fa49f01c7a;p=simgear.git Put the refference to fast_log() back in after checkit it actually works as expected --- diff --git a/simgear/sound/sound.cxx b/simgear/sound/sound.cxx index 280f72e0..8ceaf182 100644 --- a/simgear/sound/sound.cxx +++ b/simgear/sound/sound.cxx @@ -32,6 +32,7 @@ #include #include +#include #include "sound.hxx" @@ -41,8 +42,8 @@ static double _snd_inv(double v) { return (v == 0) ? 1e99 : 1/v; } static double _snd_abs(double v) { return (v >= 0) ? v : -v; } static double _snd_sqrt(double v) { return (v < 0) ? sqrt(-v) : sqrt(v); } -static double _snd_log10(double v) { return (v < 1) ? 0 : log10(v); } -static double _snd_log(double v) { return (v < 1) ? 0 : log(v); } +static double _snd_log10(double v) { return (v < 1) ? 0 : fast_log10(v); } +static double _snd_log(double v) { return (v < 1) ? 0 : fast_log(v); } // static double _snd_sqr(double v) { return v*v; } // static double _snd_pow3(double v) { return v*v*v; }