summaryrefslogtreecommitdiff
path: root/src/screen.c
diff options
context:
space:
mode:
authorLoic Guegan <loic.guegan@mailbox.org>2023-12-25 15:03:22 +0100
committerLoic Guegan <loic.guegan@mailbox.org>2023-12-25 15:03:22 +0100
commitc6ddcbe2bd529f2310e312559556aedbf896ec33 (patch)
treecdf7a0d75817feb4739fb093cc767a6024606904 /src/screen.c
parent5a6aecc0f564b17ed48f2754c2e6bf60334e9370 (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 2744ee1..f4eb7ae 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(80); // Set game to run at 60 frames-per-second
+ SetTargetFPS(200); // Set game to run at 60 frames-per-second
}
void ScreenClear() {