Fix bug from r1116 [essentially a misplaced jNO_DEFAULT directive].

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1129 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
Jake.Stine 2009-05-04 02:06:35 +00:00
parent 3a7865ac3f
commit 66a8c03ded
2 changed files with 4 additions and 16 deletions

View File

@ -399,10 +399,6 @@ u32 __fastcall iopHwRead32_Page8( u32 addr )
{
switch( masked_addr )
{
mcase(HW_SIO2_FIFO): // 0x1f801264 wouldn't make it here, so I assume you mean 01f808264, which is fifo, Jake...
ret = psxHu32(addr);
break;
mcase(HW_SIO2_CTRL):
ret = sio2_getCtrl();
break;
@ -431,15 +427,7 @@ u32 __fastcall iopHwRead32_Page8( u32 addr )
ret = sio2_getIntr();
break;
mcase(0x1f80847c): // I'm adding this to try to counter reports of pcsx2 crashing when this address is called.
Console::Error("iopHwRead32_Page8: Calling 0x1f80847c for some unknown reason.");
ret = psxHu32(addr);
break;
// Do we really want to assert here, if it's an unknown address?
//jNO_DEFAULT;
default:
Console::Error("iopHwRead32_Page8: Why are we calling 0x%x?", params addr);
ret = psxHu32(addr);
break;
}

View File

@ -1584,10 +1584,6 @@
<Filter
Name="GS"
>
<File
RelativePath="..\..\Gif.cpp"
>
</File>
<File
RelativePath="..\..\GS.cpp"
>
@ -2140,6 +2136,10 @@
<Filter
Name="DMAC"
>
<File
RelativePath="..\..\Gif.cpp"
>
</File>
<Filter
Name="Vif"
>