diff options
| author | magumagu <magumagu9@gmail.com> | 2014-04-16 14:51:18 -0700 |
|---|---|---|
| committer | magumagu <magumagu9@gmail.com> | 2014-05-16 18:55:30 -0700 |
| commit | 818c89313e54bcf3de98b976c0da57c88a8588d2 (patch) | |
| tree | a9a334c13e02fd162c120c575a7eedbad29484c8 /Source/Core/VideoCommon/VideoState.cpp | |
| parent | fee6efc4dc9e51328810c3f6542c9c91f52dbf6c (diff) | |
Video backends: unify xfregs/xfmem structures.
Removes the duplicate swxfregs global variable/struct from the software
backend in favor of the ones from VideoCommon.
Diffstat (limited to 'Source/Core/VideoCommon/VideoState.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoState.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VideoState.cpp b/Source/Core/VideoCommon/VideoState.cpp index b73088ad22..0c55af3a0c 100644 --- a/Source/Core/VideoCommon/VideoState.cpp +++ b/Source/Core/VideoCommon/VideoState.cpp @@ -31,7 +31,7 @@ static void DoState(PointerWrap &p) // XF Memory p.Do(xfregs); - p.DoArray(xfmem, XFMEM_SIZE); + p.Do(xfmem); p.DoMarker("XF Memory"); // Texture decoder |
