mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 00:35:47 +00:00
video_core/gpu_thread: Amend constructor initializer list order
Moves the data members to satisfy the order they're declared as in the constructor initializer list. Silences a -Wreorder warning.
This commit is contained in:
parent
95fff8fd23
commit
6f95564b38
1 changed files with 2 additions and 2 deletions
|
@ -127,10 +127,10 @@ private:
|
|||
|
||||
private:
|
||||
SynchState state;
|
||||
std::thread thread;
|
||||
std::thread::id thread_id;
|
||||
VideoCore::RendererBase& renderer;
|
||||
Tegra::DmaPusher& dma_pusher;
|
||||
std::thread thread;
|
||||
std::thread::id thread_id;
|
||||
};
|
||||
|
||||
} // namespace VideoCommon::GPUThread
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue