diff options
-rw-r--r-- | backends/dc/icon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/dc/icon.cpp b/backends/dc/icon.cpp index 5f5c6154bc..66d3d6f696 100644 --- a/backends/dc/icon.cpp +++ b/backends/dc/icon.cpp @@ -143,7 +143,7 @@ bool Icon::load_image2(const void *data, int len) if(len < 40) return false; memcpy(&hdr, data, 40); - if(hdr.size != 40 || hdr.sizeimg<=0 || hdr.w<0 || hdr.h<0 || + if(hdr.size != 40 || /* hdr.sizeimg<=0 || */ hdr.w<0 || hdr.h<0 || hdr.bitcnt<0 || hdr.used<0) return false; if(!hdr.used) |