diff options
author | Dmitry Erlikh <derlih@gmail.com> | 2021-11-03 22:10:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-03 22:10:21 +0100 |
commit | 33ef34189e25779c222efa068313c6df5ea532ed (patch) | |
tree | 465538fbfbe0df90a992437216f8bfa8725a41d2 | |
parent | 80e3397f8549f06a6c75a274029560934c45ea7b (diff) | |
download | openttd-33ef34189e25779c222efa068313c6df5ea532ed.tar.xz |
Fix #9648: add missing commas in crash message
-rw-r--r-- | src/saveload/afterload.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/saveload/afterload.cpp b/src/saveload/afterload.cpp index 6a42ea81c..d3194cd4e 100644 --- a/src/saveload/afterload.cpp +++ b/src/saveload/afterload.cpp @@ -393,8 +393,8 @@ static void CDECL HandleSavegameLoadCrash(int signum) "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"); |