drc: use a separate var for game hacks
[pcsx_rearmed.git] / libpcsxcore / database.c
index ac19d57..108ccc6 100644 (file)
@@ -35,12 +35,12 @@ void Apply_Hacks_Cdrom()
        }
 
        /* Dynarec game-specific hacks */
-       new_dynarec_hacks &= ~NDHACK_OVERRIDE_CYCLE_M;
+       new_dynarec_hacks_pergame = 0;
 
        /* Internal Section is fussy about timings */
        if (strcmp(CdromId, "SLPS01868") == 0)
        {
                cycle_multiplier_override = 200;
-               new_dynarec_hacks |= NDHACK_OVERRIDE_CYCLE_M;
+               new_dynarec_hacks_pergame |= NDHACK_OVERRIDE_CYCLE_M;
        }
 }