Changeset - r26050:53e9b5da4592
[Not reviewed]
master
0 1 0
Dmitry Erlikh - 3 years ago 2021-11-03 21:10:21
derlih@gmail.com
Fix #9648: add missing commas in crash message
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/saveload/afterload.cpp
Show inline comments
 
@@ -390,14 +390,14 @@ static void CDECL HandleSavegameLoadCras
 
			"This is most likely caused by a missing NewGRF or a NewGRF that\n"
 
			"has been loaded as replacement for a missing NewGRF. OpenTTD\n"
 
			"cannot easily determine whether a replacement NewGRF is of a newer\n"
 
			"or older version.\n"
 
			"It will load a NewGRF with the same GRF ID as the missing NewGRF.\n"
 
			"This means that if the author makes incompatible NewGRFs with the\n"
 
			"same GRF ID OpenTTD cannot magically do the right thing. In most\n"
 
			"cases OpenTTD will load the savegame and not crash, but this is an\n"
 
			"same GRF ID, OpenTTD cannot magically do the right thing. In most\n"
 
			"cases, OpenTTD will load the savegame and not crash, but this is an\n"
 
			"exception.\n"
 
			"Please load the savegame with the appropriate NewGRFs installed.\n"
 
			"The missing/compatible NewGRFs are:\n");
 

	
 
		for (const GRFConfig *c = _grfconfig; c != nullptr; c = c->next) {
 
			if (HasBit(c->flags, GCF_COMPATIBLE)) {
0 comments (0 inline, 0 general)