Skip to content

Commit

Permalink
sfc: fix performance ppu override detection
Browse files Browse the repository at this point in the history
  • Loading branch information
invertego authored and LukeUsher committed Sep 1, 2022
1 parent 7e48079 commit 2e38584
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ares/sfc/ppu-performance/ppu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ auto PPU::power(bool reset) -> void {
auto byte = bus.read(0xffc0 + index, 0x00);
if(byte == 0x00) break;
if(byte == 0xff) break;
title.append(byte);
title.append((char)byte);
}
title.strip();

Expand All @@ -156,7 +156,7 @@ auto PPU::power(bool reset) -> void {
if(title == "AIR STRIKE PATROL" || title == "DESERT FIGHTER") renderingCycle = 32;
if(title == "FIREPOWER 2000" || title == "SUPER SWIV") renderingCycle = 32;
if(title == "NHL '94" || title == "NHL PROHOCKEY'94") renderingCycle = 32;
if(title == "Suguro Quest++") renderingCycle = 128;
if(title == "Sugoro Quest++") renderingCycle = 128;
}

}

0 comments on commit 2e38584

Please sign in to comment.