mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
TMEM: Handle savestate and init
This commit is contained in:
@ -13,6 +13,7 @@
|
||||
#include "VideoCommon/PixelEngine.h"
|
||||
#include "VideoCommon/PixelShaderManager.h"
|
||||
#include "VideoCommon/RenderBase.h"
|
||||
#include "VideoCommon/TMEM.h"
|
||||
#include "VideoCommon/TextureCacheBase.h"
|
||||
#include "VideoCommon/TextureDecoder.h"
|
||||
#include "VideoCommon/VertexManagerBase.h"
|
||||
@ -46,6 +47,10 @@ void VideoCommon_DoState(PointerWrap& p)
|
||||
p.DoArray(texMem);
|
||||
p.DoMarker("texMem");
|
||||
|
||||
// TMEM
|
||||
TMEM::DoState(p);
|
||||
p.DoMarker("TMEM");
|
||||
|
||||
// FIFO
|
||||
Fifo::DoState(p);
|
||||
p.DoMarker("Fifo");
|
||||
|
Reference in New Issue
Block a user