From 10c3f5892c8f56bb2022866d1047c36b1eedc0ad Mon Sep 17 00:00:00 2001 From: Garrett Gu Date: Thu, 15 Aug 2019 23:17:39 -0500 Subject: [PATCH] Disable some CLI outputs --- src/org/the429ers/gameboy/GameBoy.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/org/the429ers/gameboy/GameBoy.java b/src/org/the429ers/gameboy/GameBoy.java index 89f0ce0..d055817 100644 --- a/src/org/the429ers/gameboy/GameBoy.java +++ b/src/org/the429ers/gameboy/GameBoy.java @@ -399,17 +399,12 @@ public void tick() { history.addLast(cpu.regs.PC.read()); cpu.executeOneInstruction(breaked, haltEnabled); if (quickSave) { - System.out.println("quicksaving..."); saveState(); quickSave = false; - System.out.println("done"); - //throw new IllegalStateException("asdf"); } if (quickLoad) { - System.out.println("quickloading..."); loadState(); quickLoad = false; - System.out.println("done"); } if(numInstructonsUntilBreak >= 0){