mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-21 14:02:59 +01:00
Explicitly pass formatter arguments to ShowError and family
This commit is contained in:
@@ -206,9 +206,9 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
rct_window* ShowError(rct_string_id title, rct_string_id message) override
|
||||
rct_window* ShowError(rct_string_id title, rct_string_id message, const Formatter& args) override
|
||||
{
|
||||
return window_error_open(title, message);
|
||||
return window_error_open(title, message, args);
|
||||
}
|
||||
|
||||
rct_window* ShowError(const std::string_view& title, const std::string_view& message) override
|
||||
|
||||
Reference in New Issue
Block a user