mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge pull request #2697 from thedax/hdRemasterSupport
HD Remaster Support: Remove non-required variables from Savestate
This commit is contained in:
commit
996c1642f2
2 changed files with 1 additions and 7 deletions
|
@ -28,7 +28,7 @@ extern bool g_DoubleTextureCoordinates;
|
|||
|
||||
struct HDRemaster {
|
||||
std::string gameID;
|
||||
u64 MemorySize;
|
||||
u32 MemorySize;
|
||||
bool DoubleTextureCoordinates;
|
||||
};
|
||||
|
||||
|
|
|
@ -100,12 +100,6 @@ void DoState(PointerWrap &p)
|
|||
p.DoMarker("VRAM");
|
||||
p.DoArray(m_pScratchPad, SCRATCHPAD_SIZE);
|
||||
p.DoMarker("ScratchPad");
|
||||
p.Do(g_RemasterMode); // TODO: Need to test more if this and MemoryMask need to be saved in the state
|
||||
p.DoMarker("RemasterMode");
|
||||
p.Do(g_MemoryMask);
|
||||
p.DoMarker("MemoryMask");
|
||||
p.Do(g_DoubleTextureCoordinates); // TODO: Is there a more appropriate place for this?
|
||||
p.DoMarker("DoubleTextureCoordinates");
|
||||
}
|
||||
|
||||
void Shutdown()
|
||||
|
|
Loading…
Add table
Reference in a new issue