diff options
| author | Loic Guegan <loic.guegan@mailbox.org> | 2023-12-25 21:34:28 +0100 |
|---|---|---|
| committer | Loic Guegan <loic.guegan@mailbox.org> | 2023-12-25 21:34:28 +0100 |
| commit | f5e5ca4f3cbdf229a090732fe6159d4d485e1151 (patch) | |
| tree | cc435e2e39bc7dbd40b016c4b5973b034fb4eba2 /src/screen.c | |
| parent | 4ad64d82c3007f4dffd973c8f8a22653312357c5 (diff) | |
Minor changes
Diffstat (limited to 'src/screen.c')
| -rw-r--r-- | src/screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screen.c b/src/screen.c index b706c4a..2e77ba9 100644 --- a/src/screen.c +++ b/src/screen.c @@ -15,7 +15,7 @@ void ScreenInit(int width, int height){ SetTraceLogLevel(LOG_ERROR); // Disable anoying raylib logs InitWindow(width, height, "Chip-8 Emulator"); - SetTargetFPS(500); // Set game to run at 60 frames-per-second + SetTargetFPS(60); // Set game to run at 60 frames-per-second } void ScreenClear() { |
