From a48e7317946b12478bbe214f77fd624c4b4bb8c2 Mon Sep 17 00:00:00 2001 From: Zorchenhimer Date: Sun, 9 Nov 2025 12:12:05 -0500 Subject: [PATCH] [cmd/extract-imgs] Remove debug println Removed a debug println from Layer.At() --- cmd/extract-imgs.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/cmd/extract-imgs.go b/cmd/extract-imgs.go index b2b3e79..5765422 100644 --- a/cmd/extract-imgs.go +++ b/cmd/extract-imgs.go @@ -414,12 +414,6 @@ func (l *Layer) At(x, y int) color.Color { tileIdx := (row*l.Width)+col - if x == 89 && y == 101 { - fmt.Printf("row:%d col:%d tx:%d ty:%d tileIdx:%d width:%d height:%d l.Width:%d l.Height:%d\n", - row, col, tx, ty, tileIdx, width, height, l.Width, l.Height, - ) - } - if l.Tiles[tileIdx] == nil { return color.RGBA{0x00, 0x00, 0x00, 0x00} //return color.RGBA{0xFF, 0x00, 0xFF, 0xFF}