* decal texture blending

* start implementing toon shading
* temp. revert the DMA fix, causes issues
This commit is contained in:
StapleButter
2017-04-12 20:25:54 +02:00
parent 54eeb38d3d
commit c62e160b26
4 changed files with 63 additions and 8 deletions

View File

@ -561,12 +561,12 @@ void StopCPU(u32 cpu, u32 mask)
if (cpu)
{
CPUStop |= (mask << 16);
ARM7->Halt(2);
//ARM7->Halt(2);
}
else
{
CPUStop |= mask;
ARM9->Halt(2);
//ARM9->Halt(2);
}
}