Merge pull request #1075 from exhalatio/Sram

Fix up Store Sram
This commit is contained in:
zilmar 2016-05-01 00:23:19 +10:00
commit f7db5aafaf
1 changed files with 1 additions and 1 deletions

View File

@ -5569,7 +5569,7 @@ void CMipsMemoryVM::Write32CartridgeDomain2Address2(void)
tmp[1] = 0xFF & (m_MemLookupValue.UW[0] >> 8);
tmp[2] = 0xFF & (m_MemLookupValue.UW[0] >> 16);
tmp[3] = 0xFF & (m_MemLookupValue.UW[0] >> 24);
g_MMU->DmaFromSram(tmp, (m_MemLookupAddress & 0x1FFFFFFF) - 0x08000000, 4);
g_MMU->DmaToSram(tmp, (m_MemLookupAddress & 0x1FFFFFFF) - 0x08000000, 4);
return;
}
/*if ((m_MemLookupAddress & 0x1FFFFFFF) != 0x08010000)