From fefe7c9dff1be1a30779c04932f064c16376e9c1 Mon Sep 17 00:00:00 2001 From: Octopus Octopus Date: Sun, 17 Mar 2024 15:03:59 -0500 Subject: [PATCH] remove an fmt --- bubbles.go | 1 - 1 file changed, 1 deletion(-) diff --git a/bubbles.go b/bubbles.go index 87c5483..e5fd0e9 100644 --- a/bubbles.go +++ b/bubbles.go @@ -129,7 +129,6 @@ func roundTo(base float64, To int) float64 { func isTransparent(im image.Image, x, y int) bool { r, g, b, a := im.At(x, y).RGBA() - fmt.Printf("X: %v, Y: %v\nred: %v, green: %v, blue: %v, alpha: %v\n", x, y, r, g, b, a) if r != 0 || g != 0 || b != 0 || a != 0 { return false }