summaryrefslogtreecommitdiff
path: root/src/newgrf.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2012-12-14 20:38:02 +0000
committerfrosch <frosch@openttd.org>2012-12-14 20:38:02 +0000
commitd7e9c8efed108146fb19f572833ed9ce09c94dc1 (patch)
tree71299b3e30b2d04f0c16d0cc43c29249f1d581e9 /src/newgrf.cpp
parent7ec5395832044c3fa8b271a58c7bd6ae68acf29b (diff)
downloadopenttd-d7e9c8efed108146fb19f572833ed9ce09c94dc1.tar.xz
(svn r24821) -Add: When using a non-release version of OpenTTD and the basegraphics are missing some sprites, also suggest to use a non-release version of the basegraphics.
Diffstat (limited to 'src/newgrf.cpp')
-rw-r--r--src/newgrf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf.cpp b/src/newgrf.cpp
index bd3b1ee73..9a2c4dbbd 100644
--- a/src/newgrf.cpp
+++ b/src/newgrf.cpp
@@ -5595,7 +5595,7 @@ void CheckForMissingSprites()
}
if (missing) {
- ShowErrorMessage(STR_NEWGRF_ERROR_MISSING_SPRITES, INVALID_STRING_ID, WL_CRITICAL);
+ ShowErrorMessage(IsReleasedVersion() ? STR_NEWGRF_ERROR_MISSING_SPRITES : STR_NEWGRF_ERROR_MISSING_SPRITES_UNSTABLE, INVALID_STRING_ID, WL_CRITICAL);
}
}