diff options
author | Danil Alexeev <danil@alexeev.xyz> | 2023-04-18 10:20:48 +0300 |
---|---|---|
committer | Danil Alexeev <danil@alexeev.xyz> | 2023-04-18 10:20:48 +0300 |
commit | 36bedd341a3f9e1a335a795cfb4b3c73f18903a2 (patch) | |
tree | 3831c82cce2f9eef41f2295a46b19b66ae26af2f /modules/squish | |
parent | d6dde819be6e02de133fe1b9f97c8fa6ce8668bb (diff) | |
download | redot-engine-36bedd341a3f9e1a335a795cfb4b3c73f18903a2.tar.gz |
Fix misuses of error macros
Diffstat (limited to 'modules/squish')
-rw-r--r-- | modules/squish/image_decompress_squish.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/squish/image_decompress_squish.cpp b/modules/squish/image_decompress_squish.cpp index 01be72a27e..5b35a2643a 100644 --- a/modules/squish/image_decompress_squish.cpp +++ b/modules/squish/image_decompress_squish.cpp @@ -58,7 +58,6 @@ void image_decompress_squish(Image *p_image) { squish_flags = squish::kBc5; } else { ERR_FAIL_MSG("Squish: Can't decompress unknown format: " + itos(p_image->get_format()) + "."); - return; } for (int i = 0; i <= mm_count; i++) { |