Skip to content

Commit

Permalink
Disable some CLI outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettgu10 committed Aug 16, 2019
1 parent 333e35b commit 10c3f58
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/org/the429ers/gameboy/GameBoy.java
Original file line number Diff line number Diff line change
Expand Up @@ -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){
Expand Down

0 comments on commit 10c3f58

Please sign in to comment.