Add hotfix for Nichibutsu Arcade Classics (Japan)

* Frisky Tom hangs sometimes when memory is randomized
This commit is contained in:
byuu 2019-12-27 08:58:09 +09:00
parent ac4d16c917
commit 5b29ddbcaa
1 changed files with 3 additions and 0 deletions

View File

@ -41,6 +41,9 @@ auto Program::hackCompatibility() -> void {
//to appear in the background of stage 12. this one is a bug in the original game, so only enable
//it if the hotfixes option has been enabled.
if(title == "The Hurricanes") entropy = "None";
//Frisky Tom attract sequence sometimes hangs when WRAM is initialized to pseudo-random patterns
if(title == "ニチブツ・アーケード・クラシックス") entropy = "None";
}
emulator->configure("Hacks/Entropy", entropy);