Skip to content

Commit 197b2f2

Browse files
committed
fix getPCMScale() to match getBeatVals()
1 parent b779be7 commit 197b2f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libprojectM/Renderer/BeatDetect.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class DLLEXPORT BeatDetect
7070
#undef max
7171
//work0around
7272
#endif /** WIN32 */
73-
return 0.5f / std::max(0.0001f,sqrtf(vol_history));
73+
return 4.0f / std::max(0.0001f,sqrtf(vol_history));
7474
}
7575

7676
private:

0 commit comments

Comments
 (0)