Changed keybinds for the automation example to avoid conflict with browser shortcuts (#3519)

This commit is contained in:
Miloslav Milenkov 2023-11-10 14:04:04 +00:00 committed by GitHub
parent 30dcbaff20
commit a92c34d83c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -201,7 +201,7 @@ int main(void)
//---------------------------------------------------------------------------------- //----------------------------------------------------------------------------------
// Toggle events recording // Toggle events recording
if (IsKeyPressed(KEY_F2)) if (IsKeyPressed(KEY_S))
{ {
if (!eventPlaying) if (!eventPlaying)
{ {
@ -220,7 +220,7 @@ int main(void)
} }
} }
} }
else if (IsKeyPressed(KEY_F3)) else if (IsKeyPressed(KEY_A))
{ {
if (!eventRecording && (aelist.count > 0)) if (!eventRecording && (aelist.count > 0))
{ {
@ -291,8 +291,8 @@ int main(void)
DrawText("- SPACE: Player jump", 30, 60, 10, DARKGRAY); DrawText("- SPACE: Player jump", 30, 60, 10, DARKGRAY);
DrawText("- R: Reset game state", 30, 80, 10, DARKGRAY); DrawText("- R: Reset game state", 30, 80, 10, DARKGRAY);
DrawText("- F2: START/STOP RECORDING INPUT EVENTS", 30, 110, 10, BLACK); DrawText("- S: START/STOP RECORDING INPUT EVENTS", 30, 110, 10, BLACK);
DrawText("- F3: REPLAY LAST RECORDED INPUT EVENTS", 30, 130, 10, BLACK); DrawText("- A: REPLAY LAST RECORDED INPUT EVENTS", 30, 130, 10, BLACK);
// Draw automation events recording indicator // Draw automation events recording indicator
if (eventRecording) if (eventRecording)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Before After
Before After