Skip to content

Commit

Permalink
Remove debug log from segard decompressor
Browse files Browse the repository at this point in the history
  • Loading branch information
hansbonini committed Jul 13, 2024
1 parent 13715d0 commit c13c037
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tools/segard_decomp/decomp.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ func main() {
window := make([]byte, 0x20)
rom.Read(readed)
for readed[0] != byte(0xFF) {
fmt.Printf("%02X\n", readed)
var pattern uint32
for x := uint8(0); x < readed[0]; x++ {
_, err := rom.Read(data)
Expand All @@ -59,7 +58,6 @@ func main() {
}
}

fmt.Printf("%X\n\n", pattern)
x := 0
if pattern != 0xFFFFFFFF {
for y := 0x1F; y >= 0x0; y-- {
Expand Down

0 comments on commit c13c037

Please sign in to comment.