diff options
Diffstat (limited to 'src/gfxinit.c')
-rw-r--r-- | src/gfxinit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gfxinit.c b/src/gfxinit.c index cfc7adbc4..4b55ec904 100644 --- a/src/gfxinit.c +++ b/src/gfxinit.c @@ -174,11 +174,11 @@ void CheckExternalFiles(void) for (i = 0; i < 3; i++) if (FileMD5(files_win.landscape[i], true)) win++; if (!FileMD5(sample_cat_win, false) && !FileMD5(sample_cat_dos, false)) - fprintf(stderr, "Your sample.cat file is corrupted or missing!\n"); + ShowInfo("Your 'sample.cat' file is corrupted or missing!"); for (i = 0; i < lengthof(files_openttd); i++) { if (!FileMD5(files_openttd[i], false)) { - fprintf(stderr, "Your %s file is corrupted or missing!\n", files_openttd[i].filename); + ShowInfoF("Your '%s' file is corrupted or missing!", files_openttd[i].filename); } } |