File diff r24596:eddf98238034 → r24597:afde5721a3b6
src/gfxinit.cpp
Show inline comments
 
@@ -405,7 +405,7 @@ MD5File::ChecksumResult MD5File::CheckMD
 

	
 
	if (f == nullptr) return CR_NO_FILE;
 

	
 
	size = min(size, max_size);
 
	size = std::min(size, max_size);
 

	
 
	Md5 checksum;
 
	uint8 buffer[1024];