diff --git a/frontends/sdl/src/main.rs b/frontends/sdl/src/main.rs
index f6d1fc838e0a703f84ea7d6f80e4d2f0b564db8c..0233e1bbe05444322548e46e61db0c6bc8e340d4 100644
--- a/frontends/sdl/src/main.rs
+++ b/frontends/sdl/src/main.rs
@@ -467,7 +467,7 @@ fn main() {
     // ROM file and starts running it
     let mut emulator = Emulator::new(game_boy);
     emulator.start(SCREEN_SCALE);
-    emulator.load_rom(Some("../../res/roms/test/gbprinter.gb"));
+    emulator.load_rom(Some("../../res/roms/demo/pocket.gb"));
     emulator.toggle_palette();
     emulator.run();
 }