diff --git a/source/cmd.cpp b/source/cmd.cpp index 1afc668..f31857f 100644 --- a/source/cmd.cpp +++ b/source/cmd.cpp @@ -121,13 +121,6 @@ static void* load_image(const std::string& file, u32 width, u32 height) { return NULL; } - if(imgDepth != STBI_rgb_alpha) { - stbi_image_free(img); - - printf("ERROR: Decoded image does't match expected format (%d, wanted %d).\n", imgDepth, STBI_rgb_alpha); - return NULL; - } - return img; }