Skip to content

Commit

Permalink
fn decode_sb: Add back condition accidentally removed in #382 (#424)
Browse files Browse the repository at this point in the history
Addresses performance issue by disabling println! statements.
  • Loading branch information
kkysen authored Aug 30, 2023
2 parents 396d744 + aec2637 commit e2f3675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/decode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4140,7 +4140,7 @@ unsafe fn decode_sb(
let pc = if t.frame_thread.pass == 2 {
None
} else {
if bl == BL_64X64 {
if false && bl == BL_64X64 {
println!(
"poc={},y={},x={},bl={},r={}",
(*f.frame_hdr).frame_offset,
Expand Down

0 comments on commit e2f3675

Please sign in to comment.