This commit is contained in:
Garux
2022-10-27 09:10:31 +03:00
parent b1e5581c60
commit 9d3d204018
289 changed files with 13557 additions and 33481 deletions

View File

@@ -146,7 +146,7 @@ Image* LoadBMPBuff( PointerInputStream& inputStream, std::size_t length ){
return 0;
}
if ( bmpHeader.fileSize != length ) {
globalErrorStream() << "LoadBMP: header size does not match file size (" << Unsigned( bmpHeader.fileSize ) << " vs. " << Unsigned( length ) << ")\n";
globalErrorStream() << "LoadBMP: header size does not match file size (" << Unsigned( bmpHeader.fileSize ) << " vs. " << length << ")\n";
return 0;
}
if ( bmpHeader.compression != 0 ) {