- Added NHerv� command fix on NOP's. The first fixes, at least, "Rayman Raving Rabbids 2".
- Added my fix to avoid clInd going < 0 without notice, fixes "Mario & Luigi - Partners in Time" apparent freeze when going in battle
This commit is contained in:
parent
85615190d6
commit
158681c738
|
@ -1364,12 +1364,14 @@ void NDS_glCallList(unsigned long v)
|
||||||
{
|
{
|
||||||
case 0x0:
|
case 0x0:
|
||||||
{
|
{
|
||||||
--clInd;
|
if (clInd > 0)
|
||||||
|
{
|
||||||
|
--clInd;
|
||||||
|
clCmd >>= 8;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (!clInd)
|
break;
|
||||||
break;
|
|
||||||
|
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
case 0x11 :
|
case 0x11 :
|
||||||
|
|
Loading…
Reference in New Issue