X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=libpcsxcore%2Fdatabase.c;h=52d17a7e6e0cc249344a98135cd08d9eb25f0ebd;hb=4a02afab57b1e1e90b90ae5a720ce1df8fa0c0b5;hp=ac19d576098df879000a9427e4a0dec21e795ad3;hpb=a3203cf4f2f21b0f2f74c5e494e3f5ba58225eae;p=pcsx_rearmed.git diff --git a/libpcsxcore/database.c b/libpcsxcore/database.c index ac19d576..52d17a7e 100644 --- a/libpcsxcore/database.c +++ b/libpcsxcore/database.c @@ -17,6 +17,21 @@ static const char MemorycardHack_db[8][10] = {"SCUS94409"} }; +static const struct +{ + const char * const id; + int mult; +} +new_dynarec_clock_overrides[] = +{ + /* Internal Section - fussy about timings */ + { "SLPS01868", 202 }, + /* Super Robot Taisen Alpha - on the edge with 175, + * changing memcard settings is enough to break/unbreak it */ + { "SLPS02528", 190 }, + { "SLPS02636", 190 }, +}; + /* Function for automatic patching according to GameID. */ void Apply_Hacks_Cdrom() { @@ -35,12 +50,18 @@ void Apply_Hacks_Cdrom() } /* Dynarec game-specific hacks */ - new_dynarec_hacks &= ~NDHACK_OVERRIDE_CYCLE_M; + new_dynarec_hacks_pergame = 0; + cycle_multiplier_override = 0; - /* Internal Section is fussy about timings */ - if (strcmp(CdromId, "SLPS01868") == 0) + for (i = 0; i < ARRAY_SIZE(new_dynarec_clock_overrides); i++) { - cycle_multiplier_override = 200; - new_dynarec_hacks |= NDHACK_OVERRIDE_CYCLE_M; + if (strcmp(CdromId, new_dynarec_clock_overrides[i].id) == 0) + { + cycle_multiplier_override = new_dynarec_clock_overrides[i].mult; + new_dynarec_hacks_pergame |= NDHACK_OVERRIDE_CYCLE_M; + SysPrintf("using new_dynarec clock override: %d\n", + cycle_multiplier_override); + break; + } } }