Browse Source

Optimize reverb by removing stray `volatile` from the `undenormalize` function signature.

Lukas Tenbrink 5 tháng trước cách đây
mục cha
commit
a9745aac5c
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      core/math/audio_frame.h

+ 1 - 1
core/math/audio_frame.h

@@ -33,7 +33,7 @@
 #include "core/math/vector2.h"
 #include "core/typedefs.h"
 
-static inline float undenormalize(volatile float f) {
+static _FORCE_INLINE_ float undenormalize(float f) {
 	union {
 		uint32_t i;
 		float f;