From 65fc7f914f8c33e487c3967f6c8f4ff595b045da Mon Sep 17 00:00:00 2001 From: Michael Steenbeek Date: Fri, 15 Dec 2017 12:35:40 +0100 Subject: [PATCH] Fix US English missing almost every string --- src/openrct2/localisation/LanguagePack.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/localisation/LanguagePack.cpp b/src/openrct2/localisation/LanguagePack.cpp index 5e0acfe307..67fa73c466 100644 --- a/src/openrct2/localisation/LanguagePack.cpp +++ b/src/openrct2/localisation/LanguagePack.cpp @@ -183,7 +183,7 @@ public: } else { - if (_strings.size() > (size_t)stringId) + if ((_strings.size() > (size_t)stringId) && !String::Equals(_strings[stringId].c_str(), "")) { return _strings[stringId].c_str(); }