mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-21 14:02:59 +01:00
Remove common format formatter where possible (#13034)
* Remove common format formatter where possible Eventually should have it limited to tooltips, window titles and widget args * Remove remaining paint functions using common * Remove misuse of gCommonFormatArgs
This commit is contained in:
@@ -256,9 +256,9 @@ void TitleScreen::TitleInitialise()
|
||||
|
||||
int32_t random = 0;
|
||||
bool safeSequence = false;
|
||||
std::string RCT1String = format_string(STR_TITLE_SEQUENCE_RCT1, gCommonFormatArgs);
|
||||
std::string RCT1AAString = format_string(STR_TITLE_SEQUENCE_RCT1_AA, gCommonFormatArgs);
|
||||
std::string RCT1LLString = format_string(STR_TITLE_SEQUENCE_RCT1_AA_LL, gCommonFormatArgs);
|
||||
std::string RCT1String = format_string(STR_TITLE_SEQUENCE_RCT1, nullptr);
|
||||
std::string RCT1AAString = format_string(STR_TITLE_SEQUENCE_RCT1_AA, nullptr);
|
||||
std::string RCT1LLString = format_string(STR_TITLE_SEQUENCE_RCT1_AA_LL, nullptr);
|
||||
|
||||
// Ensure the random sequence chosen isn't from RCT1 or expansion if the player doesn't have it installed
|
||||
while (!safeSequence)
|
||||
|
||||
Reference in New Issue
Block a user