GBA: Only run idle loop detection outside of BIOS region

This commit is contained in:
Jeffrey Pfau 2015-01-17 00:53:14 -08:00
parent d49a9a84f7
commit 3a7bdbf8dd
1 changed files with 2 additions and 2 deletions

View File

@ -193,8 +193,8 @@ static void GBASetActiveRegion(struct ARMCore* cpu, uint32_t address) {
struct GBAMemory* memory = &gba->memory;
int newRegion = address >> BASE_OFFSET;
if (gba->idleOptimization >= IDLE_LOOP_REMOVE) {
if (address == gba->lastJump && address == gba->idleLoop && memory->activeRegion != REGION_BIOS) {
if (gba->idleOptimization >= IDLE_LOOP_REMOVE && memory->activeRegion != REGION_BIOS) {
if (address == gba->lastJump && address == gba->idleLoop) {
GBAHalt(gba);
} else if (gba->idleOptimization >= IDLE_LOOP_DETECT && newRegion == memory->activeRegion) {
if (address == gba->lastJump) {