Video_Software: Fix a small issue that prevented perf queries from working at all.

This commit is contained in:
NeoBrainX 2012-08-26 20:21:51 +02:00
parent 1c1ae63b69
commit 4607ebea2a

View file

@ -77,7 +77,7 @@ void Read16(u16& _uReturnValue, const u32 _iAddress)
u16 address = _iAddress & 0xFFF;
if (address <= 0x16)
if (address <= 0x2e)
_uReturnValue = ((u16*)&pereg)[address >> 1];
}
@ -109,7 +109,7 @@ void Write16(const u16 _iValue, const u32 _iAddress)
}
break;
default:
if (address <= 0x16)
if (address <= 0x2e)
((u16*)&pereg)[address >> 1] = _iValue;
break;
}