Skip to content

Commit

Permalink
Fixed ci tests (woops)
Browse files Browse the repository at this point in the history
  • Loading branch information
Etto48 committed Jul 2, 2024
1 parent efab267 commit 6a4fcac
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/app/asm/assembly.rs
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,11 @@ impl App {
return;
}

let to_instruction = self.assembly_offsets.get(to_byte).cloned().unwrap_or(self.assembly_instructions.len());
let to_instruction = self
.assembly_offsets
.get(to_byte)
.cloned()
.unwrap_or(self.assembly_instructions.len());

let mut original_instruction_count = 1;
let mut original_instruction_ip = self.assembly_offsets[from_byte];
Expand Down Expand Up @@ -395,9 +399,7 @@ impl App {
self.assembly_instructions[i].file_address()
),
);
}
else
{
} else {
break;
}
}
Expand Down

0 comments on commit 6a4fcac

Please sign in to comment.