Merge pull request #2697 from thedax/hdRemasterSupport

HD Remaster Support: Remove non-required variables from Savestate
This commit is contained in:
Henrik Rydgård 2013-07-08 00:47:38 -07:00
commit 996c1642f2
2 changed files with 1 additions and 7 deletions

View file

@ -28,7 +28,7 @@ extern bool g_DoubleTextureCoordinates;
struct HDRemaster {
std::string gameID;
u64 MemorySize;
u32 MemorySize;
bool DoubleTextureCoordinates;
};

View file

@ -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()