summaryrefslogtreecommitdiff
path: root/src/screen.c
diff options
context:
space:
mode:
authorLoic Guegan <loic.guegan@mailbox.org>2023-12-25 21:34:28 +0100
committerLoic Guegan <loic.guegan@mailbox.org>2023-12-25 21:34:28 +0100
commitf5e5ca4f3cbdf229a090732fe6159d4d485e1151 (patch)
treecc435e2e39bc7dbd40b016c4b5973b034fb4eba2 /src/screen.c
parent4ad64d82c3007f4dffd973c8f8a22653312357c5 (diff)
Minor changes
Diffstat (limited to 'src/screen.c')
-rw-r--r--src/screen.c2
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() {