spritecache.c
changeset 1019 6363b8a4273e
parent 966 04770174a7f8
child 1070 bef634a62323
--- a/spritecache.c	Sat Jan 15 08:40:32 2005 +0000
+++ b/spritecache.c	Sat Jan 15 08:58:31 2005 +0000
@@ -768,7 +768,7 @@
 	};
 }
 
-/* Calculate and check the MD5 hash of the supplied filename. 
+/* Calculate and check the MD5 hash of the supplied filename.
  * returns true if the checksum is correct */
 static bool FileMD5(const MD5File file, bool warn)
 {
@@ -801,17 +801,17 @@
 		if (ferror(f))
 			if (warn) printf ("Error Reading from %s \n", buf);
 		fclose(f);
-  
+
 		md5_finish(&filemd5state, digest);
 	  return CheckMD5Digest(file, digest, warn);
 	} else { // file not found
 		return false;
-	}	
+	}
 }
 
 /* Checks, if either the Windows files exist (TRG1R.GRF) or the DOS files (TRG1.GRF)
  * by comparing the MD5 checksums of the files. _use_dos_palette is set accordingly.
- * If neither are found, Windows palette is assumed. 
+ * If neither are found, Windows palette is assumed.
  *
  * (Note: Also checks sample.cat for corruption) */
 void CheckExternalFiles()