Replace 0.f by 0.0f

This commit is contained in:
Ray
2020-10-05 20:19:18 +02:00
parent b29311c7ca
commit 41192c6d4a
6 changed files with 17 additions and 17 deletions

View File

@@ -236,7 +236,7 @@ static void DisableCursor() {} // Lock cursor
static int IsKeyDown(int key) { return 0; }
static int IsMouseButtonDown(int button) { return 0;}
static float GetMouseWheelMove() { return 0.f; }
static float GetMouseWheelMove() { return 0.0f; }
static Vector2 GetMousePosition() { return (Vector2){ 0.0f, 0.0f }; }
#endif