Skip to content

Commit

Permalink
remove println.
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-wannacott committed Nov 1, 2024
1 parent 26b79a6 commit 9808b80
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/gontage.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ func decodeImages(sprites_folder []fs.DirEntry, targetFolder string, pwd string,
var sprites_array []image.Image
var sprites_names []string
for _, sprite := range sprites_folder {
fmt.Println(sprite.Name())
if !sprite.IsDir() && filepath.Ext(sprite.Name()) == ".png" {
if reader, err := os.Open(filepath.Join(pwd, targetFolder, sprite.Name())); err == nil {
m, _, err := image.Decode(reader)
Expand Down

0 comments on commit 9808b80

Please sign in to comment.