summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorhatal175 <hatal175@users.noreply.github.com>2023-04-25 23:13:46 +0300
committerGitHub <noreply@github.com>2023-04-25 23:13:46 +0300
commitca4ebc90127acd223418c774bd0235bb80e1d672 (patch)
tree73ff4d925a580999d1b5d6aa0e4e317c3516a3d7 /include
parentd14d173c7b8685466654a324dc2c5a04124633e6 (diff)
parent632274e3b1432d55cf6cbbcafcad1ab3767b987a (diff)
Merge pull request #321 from Jcw87/FLOAT_MIN
fix FLOAT_MIN
Diffstat (limited to 'include')
-rw-r--r--include/dolphin/types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dolphin/types.h b/include/dolphin/types.h
index 28ccfa4b14..4bfa3b59fe 100644
--- a/include/dolphin/types.h
+++ b/include/dolphin/types.h
@@ -34,7 +34,7 @@ typedef int BOOL;
#define INT32_MAX (0x7fffffff)
#define UINT32_MAX (0xffffffff)
-#define FLOAT_MIN (-1e31f)
+#define FLOAT_MIN (1.175494351e-38f)
#define FLOAT_MAX (3.40282346638528860e+38f)
#endif \ No newline at end of file