Fix warnings in visual studio (#3512)
This commit is contained in:
parent
fc21a8e552
commit
6cd37e57a6
11 changed files with 21 additions and 21 deletions
|
@ -30,7 +30,7 @@ int main(void)
|
|||
Vector2 end = { (float)screenWidth, (float)screenHeight };
|
||||
|
||||
Vector2 startControl = { 100, 0 };
|
||||
Vector2 endControl = { GetScreenWidth() - 100, GetScreenHeight() };
|
||||
Vector2 endControl = { (float)GetScreenWidth() - 100, (float)GetScreenHeight() };
|
||||
|
||||
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
|
||||
//--------------------------------------------------------------------------------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue