mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-23 05:36:23 +00:00
15 lines
365 B
Diff
15 lines
365 B
Diff
diff --git a/dep/g3dlite/source/g3dmath.cpp b/dep/g3dlite/source/g3dmath.cpp
|
|
index e846f8c..84e8345 100644
|
|
--- a/dep/g3dlite/source/g3dmath.cpp
|
|
+++ b/dep/g3dlite/source/g3dmath.cpp
|
|
@@ -41,7 +41,7 @@ double inf() {
|
|
}
|
|
|
|
bool isNaN(float x) {
|
|
- static const float n = nan();
|
|
+ static const float n = fnan();
|
|
return memcmp(&x, &n, sizeof(float)) == 0;
|
|
}
|
|
|
|
|