diff options
| author | Ray <raysan5@gmail.com> | 2018-07-30 13:56:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-30 13:56:28 +0200 |
| commit | b6f2fb613eda8f5266236147950df35f06120d4e (patch) | |
| tree | 7ecb6e33fb664ccefb79e5f8286d4e1bdba88290 | |
| parent | 8bea6abe8c9d3d91a060bec141d6c4476e516ac1 (diff) | |
| parent | 6ea8c62b4320f62067a4e55223034df83c675ff6 (diff) | |
| download | raylib-b6f2fb613eda8f5266236147950df35f06120d4e.tar.gz raylib-b6f2fb613eda8f5266236147950df35f06120d4e.zip | |
Merge pull request #612 from ethan-tqa/master
fix problem when compiling with MSVC 2017, error C2177
| -rw-r--r-- | examples/models/models_mesh_picking.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/models/models_mesh_picking.c b/examples/models/models_mesh_picking.c index fb224c7a..c5521373 100644 --- a/examples/models/models_mesh_picking.c +++ b/examples/models/models_mesh_picking.c @@ -13,7 +13,7 @@ #include "raylib.h" #include "raymath.h" -#define FLT_MAX 3.40282347E+38F // Maximum value of a float, defined in <float.h> +#define FLT_MAX 340282346638528859811704183484516925440.0f // Maximum value of a float, from bit pattern 01111111011111111111111111111111 int main() { |
