summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/PixelEngine.cpp
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2013-04-09 18:57:39 -0500
committerJordan Woyak <jordan.woyak@gmail.com>2013-04-09 19:02:22 -0500
commit385d8e2b15c8accce3b4e4b4f3dc90f63e3fbee4 (patch)
tree418b3756ecfc00e47702f63e39075d9795db6c92 /Source/Core/VideoCommon/Src/PixelEngine.cpp
parent5c374b271834dd14410358ae3672a89e17390ec1 (diff)
ChunkFile has allowed me to accidentally "Do" a non-POD for the last time!
Diffstat (limited to 'Source/Core/VideoCommon/Src/PixelEngine.cpp')
-rw-r--r--Source/Core/VideoCommon/Src/PixelEngine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Src/PixelEngine.cpp b/Source/Core/VideoCommon/Src/PixelEngine.cpp
index b014148d8d..348b704f5b 100644
--- a/Source/Core/VideoCommon/Src/PixelEngine.cpp
+++ b/Source/Core/VideoCommon/Src/PixelEngine.cpp
@@ -137,7 +137,7 @@ void DoState(PointerWrap &p)
p.Do(m_DstAlphaConf);
p.Do(m_AlphaModeConf);
p.Do(m_AlphaRead);
- p.Do(m_Control);
+ p.DoPOD(m_Control);
p.Do(g_bSignalTokenInterrupt);
p.Do(g_bSignalFinishInterrupt);