mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
TMEM: Handle savestate and init
This commit is contained in:
parent
88bd10cd30
commit
a33cf27885
5 changed files with 27 additions and 4 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue