diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2021-05-03 01:23:03 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-03 01:23:03 +0200 |
| commit | 448f834b28afa4bb73e82f76c4cfec9c0b45d42e (patch) | |
| tree | 28d68143813cfb062f1982a23669b6bcb5ea0333 | |
| parent | 9212e3176ab90b0ba63c751ad3faf4b887046557 (diff) | |
Remove debug print in image helper.
| -rw-r--r-- | core/image/common.odin | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/core/image/common.odin b/core/image/common.odin index 6630dfd5b..e92060ed2 100644 --- a/core/image/common.odin +++ b/core/image/common.odin @@ -3,8 +3,6 @@ package image import "core:bytes" import "core:mem" -import "core:fmt" - Image :: struct { width: int, height: int, @@ -202,7 +200,5 @@ return_single_channel :: proc(img: ^Image, channel: Channel) -> (res: ^Image, ok res.background = img.background; res.sidecar = img.sidecar; - fmt.println(t); - return res, true; -}
\ No newline at end of file +} |