diff options
Diffstat (limited to 'Source/Core/VideoCommon/VideoState.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoState.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/VideoState.cpp b/Source/Core/VideoCommon/VideoState.cpp index dd0eb2fb88..1f23d5318d 100644 --- a/Source/Core/VideoCommon/VideoState.cpp +++ b/Source/Core/VideoCommon/VideoState.cpp @@ -14,6 +14,7 @@ #include "VideoCommon/VertexShaderManager.h" #include "VideoCommon/VideoState.h" #include "VideoCommon/XFMemory.h" +#include "VideoCommon/BoundingBox.h" static void DoState(PointerWrap &p) { @@ -52,6 +53,10 @@ static void DoState(PointerWrap &p) VertexManager::DoState(p); p.DoMarker("VertexManager"); + BoundingBox::DoState(p); + p.DoMarker("BoundingBox"); + + // TODO: search for more data that should be saved and add it here } |
