mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-23 19:48:30 +00:00
Review "aggregate initializations" #1403
This commit is contained in:
@@ -39,7 +39,7 @@ int main()
|
||||
|
||||
SetCameraMode(camera, CAMERA_ORBITAL);
|
||||
|
||||
Vector3 cubePosition = { 0.0f };
|
||||
Vector3 cubePosition = { 0 };
|
||||
|
||||
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
|
||||
//--------------------------------------------------------------------------------------
|
||||
|
@@ -40,7 +40,7 @@ int main()
|
||||
|
||||
SetCameraMode(camera, CAMERA_ORBITAL);
|
||||
|
||||
Vector3 cubePosition = { 0.0f };
|
||||
Vector3 cubePosition = { 0 };
|
||||
|
||||
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
|
||||
//--------------------------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user