(svn r1941) Report missing NewGRF file as a fatal error.
authorpasky
Sun, 06 Mar 2005 13:57:19 +0000
changeset 1437 59d8d0d77fa8
parent 1436 ee20dd86ac0d
child 1438 98d01c6873f7
(svn r1941) Report missing NewGRF file as a fatal error.
spritecache.c
--- a/spritecache.c	Sun Mar 06 13:55:40 2005 +0000
+++ b/spritecache.c	Sun Mar 06 13:57:19 2005 +0000
@@ -912,7 +912,8 @@
 			load_index = _custom_sprites_base;
 			for (j = 0; j != lengthof(_newgrf_files) && _newgrf_files[j]; j++) {
 				if (!FiosCheckFileExists(_newgrf_files[j]))
-					continue;
+					// TODO: usrerror()
+					error("NewGRF file missing: %s", _newgrf_files[j]);
 				if (_loading_stage == 0)
 					InitNewGRFFile(_newgrf_files[j], load_index);
 				load_index += LoadNewGrfFile(_newgrf_files[j], load_index, i++);