summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/EfbInterface.cpp
diff options
context:
space:
mode:
authorflacs <tilkax@gmail.com>2015-10-01 01:55:54 +0200
committerflacs <tilkax@gmail.com>2015-10-01 01:55:54 +0200
commit696d6eae099feba23c280017c5184785fc1e3076 (patch)
tree9f8ea4c014a142bdf4e08c678f4e748f1a9f3697 /Source/Core/VideoBackends/Software/EfbInterface.cpp
parent6305437327171e92873eb2e25cba14e8ffb352cc (diff)
parenta10be269725b67b0a5741cc4944f5c225eef7f75 (diff)
Merge pull request #3108 from lioncash/cstyle-array
ChunkFile: Provide additional helpers for C-style arrays
Diffstat (limited to 'Source/Core/VideoBackends/Software/EfbInterface.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/EfbInterface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/Software/EfbInterface.cpp b/Source/Core/VideoBackends/Software/EfbInterface.cpp
index 2ad6dbbd86..ff9636d6c3 100644
--- a/Source/Core/VideoBackends/Software/EfbInterface.cpp
+++ b/Source/Core/VideoBackends/Software/EfbInterface.cpp
@@ -33,7 +33,7 @@ namespace EfbInterface
void DoState(PointerWrap &p)
{
- p.DoArray(efb, EFB_WIDTH*EFB_HEIGHT*6);
+ p.DoArray(efb);
}
static void SetPixelAlphaOnly(u32 offset, u8 a)