summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/CommandProcessor.cpp
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2022-10-06 21:55:26 +0200
committerGitHub <noreply@github.com>2022-10-06 21:55:26 +0200
commit09c5b5856c5e6646e6043159ae14ae444824ebf3 (patch)
tree040975cb3f45c688a838ab6b6223ee5455eaa8e7 /Source/Core/VideoCommon/CommandProcessor.cpp
parent7498eb1e6c4361040806965c63a7a6e06b3ec6bd (diff)
parent4d33f6af7c0c7df7415ad0161a759e21173e71b0 (diff)
Merge pull request #11124 from Pokechu22/no-more-dopod
Common/PointerWrap: Remove DoPOD
Diffstat (limited to 'Source/Core/VideoCommon/CommandProcessor.cpp')
-rw-r--r--Source/Core/VideoCommon/CommandProcessor.cpp6
1 files changed, 3 insertions, 3 deletions
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);