ports/audio/fmit/files/patch-libs__Music__Music.h
Martin Wilke c85485155c - Update to 0.99.2
PR:		160076
Submitted by:	Ports Fury
2011-08-26 03:33:52 +00:00

11 lines
416 B
C

--- libs/Music/Music.h.orig 2011-01-28 08:09:11.000000000 +0900
+++ libs/Music/Music.h 2011-08-21 21:51:54.000000000 +0900
@@ -285,7 +285,7 @@
// TODO cannot create a template so easily because the pow10 is not defined for all types
inline double invlp(double value)
{
- return pow10(value/20.0);
+ return pow(10.0,value/20.0);
// return pow(TYPE(10), value/TYPE(20));
}