X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=libpcsxcore%2Fdatabase.c;h=561aedeedb79bdd39f3ff357771e53cb7d26a892;hb=d5aeda23720ba9374312f8d387f299024fedb7e6;hp=f383e361623894e293521421cf7722d7284bbb2b;hpb=eedfe8060a20c8a9120ff8cab55110a1e2470887;p=pcsx_rearmed.git diff --git a/libpcsxcore/database.c b/libpcsxcore/database.c index f383e361..561aedee 100644 --- a/libpcsxcore/database.c +++ b/libpcsxcore/database.c @@ -1,6 +1,6 @@ #include "misc.h" -#include "../plugins/dfsound/spu_config.h" #include "sio.h" +#include "new_dynarec/new_dynarec.h" /* It's duplicated from emu_if.c */ #define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0])) @@ -17,6 +17,28 @@ static const char MemorycardHack_db[8][10] = {"SCUS94409"} }; +static const struct +{ + const char * const id; + int mult; +} +cycle_multiplier_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 }, +#ifdef DRC_DISABLE /* new_dynarec has a hack for this game */ + /* Parasite Eve II - internal timer checks */ + { "SLUS01042", 125 }, + { "SLUS01055", 125 }, + { "SLES02558", 125 }, + { "SLES12558", 125 }, +#endif +}; + /* Function for automatic patching according to GameID. */ void Apply_Hacks_Cdrom() { @@ -33,4 +55,20 @@ void Apply_Hacks_Cdrom() McdDisable[1] = 1; } } + + /* Dynarec game-specific hacks */ + new_dynarec_hacks_pergame = 0; + Config.cycle_multiplier_override = 0; + + for (i = 0; i < ARRAY_SIZE(cycle_multiplier_overrides); i++) + { + if (strcmp(CdromId, cycle_multiplier_overrides[i].id) == 0) + { + Config.cycle_multiplier_override = cycle_multiplier_overrides[i].mult; + new_dynarec_hacks_pergame |= NDHACK_OVERRIDE_CYCLE_M; + SysPrintf("using cycle_multiplier_override: %d\n", + Config.cycle_multiplier_override); + break; + } + } }