saturn - enable writes to memory domains (i had kind of forgotten about this). usual caveat: memory domain pokes can create impossible situations, because you're doing things that you ought not to be allowed to do

This commit is contained in:
goyuken 2013-05-11 14:24:01 +00:00
parent 6f2d75a260
commit 16d78da582
1 changed files with 1 additions and 1 deletions

View File

@ -415,7 +415,7 @@ namespace BizHawk.Emulation.Consoles.Sega.Saturn
unsafe
{
byte* p = (byte*)d;
//p[addr] = val;
p[addr] = val;
}
}
));