removing typo (#2790)

This commit is contained in:
Dor Shapira 2022-11-08 22:47:05 +02:00 committed by GitHub
parent ca6f58eed1
commit 773c0d78d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ int main(void)
float timePlayed = 0.0f; // Time played normalized [0.0f..1.0f]
bool pause = false; // Music playing paused
SetTargetFPS(30); // Set our game to run at 60 frames-per-second
SetTargetFPS(30); // Set our game to run at 30 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
@ -95,4 +95,4 @@ int main(void)
//--------------------------------------------------------------------------------------
return 0;
}
}