--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:
drkIIRaziel 2010-03-08 10:45:05 +00:00
parent b2078a0243
commit 857cf72862
1 changed files with 1 additions and 1 deletions

View File

@ -382,7 +382,7 @@ void SysMtgsThread::ExecuteTaskInThread()
case GS_RINGTYPE_MEMWRITE8:
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;
case GS_RINGTYPE_MEMWRITE16: