Changed IsKeyPressed('R') to IsKeyPressed(KEY_R) for Physics examples! (#1666)

This commit is contained in:
Rabia Alhaffar 2021-03-22 17:44:12 +02:00 committed by GitHub
parent b573ff3e7a
commit 8e1e1ef970
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 6 deletions

View file

@ -51,7 +51,7 @@ int main(void)
//----------------------------------------------------------------------------------
UpdatePhysics(); // Update physics system
if (IsKeyPressed('R')) // Reset physics system
if (IsKeyPressed(KEY_R)) // Reset physics system
{
ResetPhysics();