1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-23 15:52:55 +01:00

Re-introduce message on successful screenshot (#21983)

* Re-introduce message on successful screenshot

* Automatically close previous screenshot notices before new ones
This commit is contained in:
Aaron van Geffen
2024-05-10 15:04:12 +02:00
committed by GitHub
parent ba9c84f835
commit 347ce53f26
9 changed files with 44 additions and 21 deletions

View File

@@ -27,11 +27,12 @@ namespace OpenRCT2::Ui
{
return nullptr;
}
WindowBase* ShowError(StringId /*title*/, StringId /*message*/, const Formatter& /*formatter*/) override
WindowBase* ShowError(
StringId /*title*/, StringId /*message*/, const Formatter& /*formatter*/, bool /*autoClose*/) override
{
return nullptr;
}
WindowBase* ShowError(std::string_view /*title*/, std::string_view /*message*/) override
WindowBase* ShowError(std::string_view /*title*/, std::string_view /*message*/, bool /*autoClose*/) override
{
return nullptr;
}