Browse Source

Remove debug print in image helper.

Jeroen van Rijn 4 years ago
parent
commit
448f834b28
1 changed files with 1 additions and 5 deletions
  1. 1 5
      core/image/common.odin

+ 1 - 5
core/image/common.odin

@@ -3,8 +3,6 @@ package image
 import "core:bytes"
 import "core:bytes"
 import "core:mem"
 import "core:mem"
 
 
-import "core:fmt"
-
 Image :: struct {
 Image :: struct {
 	width:      int,
 	width:      int,
 	height:     int,
 	height:     int,
@@ -202,7 +200,5 @@ return_single_channel :: proc(img: ^Image, channel: Channel) -> (res: ^Image, ok
 	res.background = img.background;
 	res.background = img.background;
 	res.sidecar    = img.sidecar;
 	res.sidecar    = img.sidecar;
 
 
-	fmt.println(t);
-
 	return res, true;
 	return res, true;
-}
+}