mirror of
https://github.com/stenzek/duckstation.git
synced 2026-02-13 18:04:32 +00:00
ProgressCallback: Avoid unnecessary struct padding
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user