mirror of
https://github.com/raysan5/raylib.git
synced 2025-11-17 15:51:19 +00:00
Changed IsKeyPressed('R') to IsKeyPressed(KEY_R) for Physics examples! (#1666)
This commit is contained in:
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user