diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2024-12-10 23:12:22 +0100 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2024-12-10 23:12:22 +0100 |
| commit | 6784ae807cf327bc1026dd7efa0bf7f4dd501a06 (patch) | |
| tree | ce6aeacc71259b87df3d515c896493f49a3a80a6 /test/trackball.c | |
| parent | 5af62bc565b3493c9cef2bd7e3cf3bb82a4d3209 (diff) | |
Fix compiler warnings (VS 2019)
Found with warning level: /W3
Diffstat (limited to 'test/trackball.c')
| -rw-r--r-- | test/trackball.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/trackball.c b/test/trackball.c index 7876bd541..398d537b4 100644 --- a/test/trackball.c +++ b/test/trackball.c @@ -66,7 +66,7 @@ */ static float tb_project_to_sphere(float, float, float); static void normalize_quat(float [4]); -static float max_velocity = 0.1; +static float max_velocity = 0.1f; void vzero(float *v) |
