diff --git a/src/main.c b/src/main.c
index 3c6baed..0f3338c 100644
--- a/src/main.c
+++ b/src/main.c
@@ -13,7 +13,7 @@ int main(int argc, char *argv[])
 
   // Initialize
   MemInit();
-  MemLoadROM("../roms/chip8-test-suite/5-quirks.ch8");
+  MemLoadROM("../roms/chip8-test-suite/6-keypad.ch8");
 
   ScreenInit(800,400);
   VCPUInit();
@@ -21,7 +21,7 @@ int main(int argc, char *argv[])
   int i=0;
 
   while (!WindowShouldClose()){
-    for(int i=0;i<500;i++){
+    for(int i=0;i<50;i++){
     VCPUFetch();
     VCPUDecode();
     VCPUExecute();
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() {