1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-24 00:03:11 +01:00

Replace usage of set_format_arg by Formatter::Common() (#11412)

This commit is contained in:
Breno Rodrigues Guimarães
2020-04-25 18:44:14 -03:00
committed by GitHub
parent d0aa3c3921
commit a0619d04cf
10 changed files with 47 additions and 35 deletions

View File

@@ -429,8 +429,9 @@ void screenshot_giant()
WriteDpiToFile(path->c_str(), &dpi, renderedPalette);
// Show user that screenshot saved successfully
set_format_arg(0, rct_string_id, STR_STRING);
set_format_arg(2, char*, path_get_filename(path->c_str()));
auto ft = Formatter::Common();
ft.Add<rct_string_id>(STR_STRING);
ft.Add<char*>(path_get_filename(path->c_str()));
context_show_error(STR_SCREENSHOT_SAVED_AS, STR_NONE);
}
catch (const std::exception& e)