diff options
| author | Pokechu22 <Pokechu022@gmail.com> | 2022-10-05 22:58:10 -0700 |
|---|---|---|
| committer | Pokechu22 <Pokechu022@gmail.com> | 2022-10-06 11:25:36 -0700 |
| commit | e8221d79482249b3ca6a2584e84e7d1ec7bb9061 (patch) | |
| tree | 48b318c82473c2692995c0ea8df68a3debba72b8 /Source/Core/VideoCommon/PixelEngine.cpp | |
| parent | 7498eb1e6c4361040806965c63a7a6e06b3ec6bd (diff) | |
Common/PointerWrap: Remove DoPOD
This was added in 385d8e2b15c8accce3b4e4b4f3dc90f63e3fbee4, but became somewhat redundant with Do in 4c7bbd96e435a7516b05d3e8c791ab41505e2e0f, and completely redundant now that std::is_trivially_copyable_v is well-supported.
Diffstat (limited to 'Source/Core/VideoCommon/PixelEngine.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/PixelEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/PixelEngine.cpp b/Source/Core/VideoCommon/PixelEngine.cpp index 4c23356ebd..d2cd5ef332 100644 --- a/Source/Core/VideoCommon/PixelEngine.cpp +++ b/Source/Core/VideoCommon/PixelEngine.cpp @@ -169,7 +169,7 @@ void DoState(PointerWrap& p) p.Do(m_DstAlphaConf); p.Do(m_AlphaModeConf); p.Do(m_AlphaRead); - p.DoPOD(m_Control); + p.Do(m_Control); p.Do(s_token); p.Do(s_token_pending); |
