Replace 0.f by 0.0f
This commit is contained in:
parent
b29311c7ca
commit
41192c6d4a
6 changed files with 17 additions and 17 deletions
|
@ -15,8 +15,8 @@
|
|||
#include "raymath.h"
|
||||
|
||||
#define G 400
|
||||
#define PLAYER_JUMP_SPD 350.f
|
||||
#define PLAYER_HOR_SPD 200.f
|
||||
#define PLAYER_JUMP_SPD 350.0f
|
||||
#define PLAYER_HOR_SPD 200.0f
|
||||
|
||||
typedef struct Player {
|
||||
Vector2 position;
|
||||
|
|
|
@ -27,7 +27,7 @@ int main(void)
|
|||
|
||||
Vector2 center = {(GetScreenWidth() - 300)/2, GetScreenHeight()/2 };
|
||||
|
||||
float outerRadius = 180.f;
|
||||
float outerRadius = 180.0f;
|
||||
int startAngle = 0;
|
||||
int endAngle = 180;
|
||||
int segments = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue