1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-02 03:35:09 +01:00

Default initialize members in ProgressWindow

This commit is contained in:
ζeh Matt
2025-05-23 18:21:23 +03:00
parent 5351d50f5a
commit 374f17bac9

View File

@@ -71,12 +71,12 @@ namespace OpenRCT2::Ui::Windows
private:
CloseCallback _onClose = nullptr;
StringId _progressFormat;
StringId _progressFormat{ kStringIdEmpty };
std::string _progressTitle;
std::string _currentCaption;
uint32_t _currentProgress;
uint32_t _totalCount;
uint32_t _currentProgress{};
uint32_t _totalCount{};
int8_t style = -1;
public: