From e8221d79482249b3ca6a2584e84e7d1ec7bb9061 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Wed, 5 Oct 2022 22:58:10 -0700 Subject: 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. --- Source/Core/VideoCommon/CommandProcessor.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Source/Core/VideoCommon/CommandProcessor.cpp') diff --git a/Source/Core/VideoCommon/CommandProcessor.cpp b/Source/Core/VideoCommon/CommandProcessor.cpp index f2264ecbe0..0ab1eb7aee 100644 --- a/Source/Core/VideoCommon/CommandProcessor.cpp +++ b/Source/Core/VideoCommon/CommandProcessor.cpp @@ -107,9 +107,9 @@ void SCPFifoStruct::DoState(PointerWrap& p) void DoState(PointerWrap& p) { - p.DoPOD(m_CPStatusReg); - p.DoPOD(m_CPCtrlReg); - p.DoPOD(m_CPClearReg); + p.Do(m_CPStatusReg); + p.Do(m_CPCtrlReg); + p.Do(m_CPClearReg); p.Do(m_bboxleft); p.Do(m_bboxtop); p.Do(m_bboxright); -- cgit v1.2.3