ProgressCallback: Avoid unnecessary struct padding

This commit is contained in:
Stenzek
2025-11-22 22:38:59 +10:00
parent 4290f75951
commit 82a44b19bf

View File

@@ -54,14 +54,15 @@ protected:
bool cancellable;
};
bool m_cancellable = false;
bool m_cancelled = false;
std::string m_status_text;
u32 m_progress_range = 1;
u32 m_progress_value = 0;
u32 m_base_progress_value = 0;
bool m_cancellable = false;
bool m_cancelled = false;
std::unique_ptr<State> m_saved_state;
public: