mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 10:11:57 +03:00
Optimize reverb by removing stray volatile from the undenormalize function signature.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user