Skip to content

Commit

Permalink
Removed debug println!() call
Browse files Browse the repository at this point in the history
  • Loading branch information
velllu committed Sep 5, 2023
1 parent 04c3a5d commit af1d57c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/cpu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ impl GameBoy {

fn jump_relative(&mut self) {
let jump_amount = self.next(1) as i8;
println!("{}", jump_amount);

if jump_amount >= 0 {
self.registers.pc = self.registers.pc.wrapping_add(jump_amount as u16);
Expand Down

0 comments on commit af1d57c

Please sign in to comment.