Update hacks.cpp

This commit is contained in:
setthh 2021-09-26 14:14:17 +02:00 committed by GitHub
parent e5809740a5
commit b5833c8f94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -15,6 +15,12 @@ auto Program::hackCompatibility() -> void {
//the dialogue text is blurry due to an issue in the scanline-based renderer's color math support //the dialogue text is blurry due to an issue in the scanline-based renderer's color math support
if(title == "マーヴェラス") fastPPU = false; if(title == "マーヴェラス") fastPPU = false;
//the character sprites are incorrect due to an issue in the scanline-based renderer's color math support
if(title == "SUUCHIIPAI") fastPPU = false;
//the pause menu text is blurry due to an issue in the scanline-based renderer's color math support
if(title == "DRAGON KNIGHT 4") fastPPU = false;
//stage 2 uses pseudo-hires in a way that's not compatible with the scanline-based renderer //stage 2 uses pseudo-hires in a way that's not compatible with the scanline-based renderer
if(title == "SFC クレヨンシンチャン") fastPPU = false; if(title == "SFC クレヨンシンチャン") fastPPU = false;