mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 15:19:42 -06:00
EXI: fix -Wreorder warning
This commit is contained in:
@ -109,6 +109,9 @@ private:
|
|||||||
UEXI_CONTROL m_control;
|
UEXI_CONTROL m_control;
|
||||||
u32 m_imm_data = 0;
|
u32 m_imm_data = 0;
|
||||||
|
|
||||||
|
// Since channels operate a bit differently from each other
|
||||||
|
u32 m_channel_id;
|
||||||
|
|
||||||
// This data is needed in order to reinitialize a GCI folder memory card when switching between
|
// This data is needed in order to reinitialize a GCI folder memory card when switching between
|
||||||
// GCI folder and other devices in the memory card slot or after loading a savestate. Even though
|
// GCI folder and other devices in the memory card slot or after loading a savestate. Even though
|
||||||
// this data is only vaguely related to the EXI_Channel, this seems to be the best place to store
|
// this data is only vaguely related to the EXI_Channel, this seems to be the best place to store
|
||||||
@ -122,8 +125,5 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
std::array<std::unique_ptr<IEXIDevice>, NUM_DEVICES> m_devices;
|
std::array<std::unique_ptr<IEXIDevice>, NUM_DEVICES> m_devices;
|
||||||
|
|
||||||
// Since channels operate a bit differently from each other
|
|
||||||
u32 m_channel_id;
|
|
||||||
};
|
};
|
||||||
} // namespace ExpansionInterface
|
} // namespace ExpansionInterface
|
||||||
|
Reference in New Issue
Block a user