mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 16:49:58 -06:00
Common/PointerWrap: Remove DoPOD
This was added in385d8e2b15
, but became somewhat redundant with Do in4c7bbd96e4
, and completely redundant now that std::is_trivially_copyable_v is well-supported.
This commit is contained in:
@ -164,9 +164,9 @@ void DoState(PointerWrap& p)
|
||||
|
||||
if (!state.aram.wii_mode)
|
||||
p.DoArray(state.aram.ptr, state.aram.size);
|
||||
p.DoPOD(state.dsp_control);
|
||||
p.DoPOD(state.audio_dma);
|
||||
p.DoPOD(state.aram_dma);
|
||||
p.Do(state.dsp_control);
|
||||
p.Do(state.audio_dma);
|
||||
p.Do(state.aram_dma);
|
||||
p.Do(state.aram_info);
|
||||
p.Do(state.aram_mode);
|
||||
p.Do(state.aram_refresh);
|
||||
|
Reference in New Issue
Block a user