mirror of https://github.com/PCSX2/pcsx2.git
--i was looking out of the window, and noticed the cast is missing. So i added it !
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2683 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
b2078a0243
commit
857cf72862
|
@ -382,7 +382,7 @@ void SysMtgsThread::ExecuteTaskInThread()
|
||||||
|
|
||||||
case GS_RINGTYPE_MEMWRITE8:
|
case GS_RINGTYPE_MEMWRITE8:
|
||||||
MTGS_LOG( "(MTGS Packet Read) ringtype=Write8, addr=0x%08x, data=0x%02x", tag.data[0], (u8)tag.data[1] );
|
MTGS_LOG( "(MTGS Packet Read) ringtype=Write8, addr=0x%08x, data=0x%02x", tag.data[0], (u8)tag.data[1] );
|
||||||
RingBuffer.Regs[tag.data[0]] = (u8)tag.data[1];
|
*(u8*)RingBuffer.Regs[tag.data[0]] = (u8)tag.data[1];
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case GS_RINGTYPE_MEMWRITE16:
|
case GS_RINGTYPE_MEMWRITE16:
|
||||||
|
|
Loading…
Reference in New Issue