Changeset - r5764:ea73b3997a8c
[Not reviewed]
master
0 1 0
truelight - 17 years ago 2007-01-21 17:09:32
truelight@openttd.org
(svn r8315) -Fix: use ShowInfo over fprintf(stderr, as Windows doesn't always have a stderr visible/available
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/gfxinit.cpp
Show inline comments
 
@@ -145,7 +145,7 @@ static bool FileMD5(const MD5File file, 
 
		while ((len = fread(buffer, 1, sizeof(buffer), f)) != 0)
 
			md5_append(&filemd5state, buffer, len);
 

	
 
		if (ferror(f) && warn) fprintf(stderr, "Error Reading from %s \n", buf);
 
		if (ferror(f) && warn) ShowInfoF("Error Reading from %s \n", buf);
 
		fclose(f);
 

	
 
		md5_finish(&filemd5state, digest);
0 comments (0 inline, 0 general)