summaryrefslogtreecommitdiff
path: root/src/resources
diff options
context:
space:
mode:
authoronelin <oscar@nelin.dk>2025-06-14 09:09:31 +0000
committeronelin <oscar@nelin.dk>2025-06-14 09:09:31 +0000
commit9990e4e91d1bd985bb947d419d4b5400ac8ffde0 (patch)
tree1f6005e255997015d08a5e6b53995044aff8305c /src/resources
parent576f79c8ec877b62d55cc79493c0c2d660fde407 (diff)
Components are not errors:)
Diffstat (limited to 'src/resources')
-rw-r--r--src/resources/src/textures.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/resources/src/textures.c b/src/resources/src/textures.c
index 2ba4691..913c931 100644
--- a/src/resources/src/textures.c
+++ b/src/resources/src/textures.c
@@ -23,7 +23,6 @@ Texture load_texture(const Asset_TextureSpec *restrict ts) {
}
img = stbi_load(ts->path, &width, &height, &components_per_pixel, 0);
- ERROR("components per pixel: %d", components_per_pixel);
if (img == NULL) {
ERROR("Failed to load image %s", ts->path);