mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-16 23:16:29 +02:00
fix: PPTC blacklist trigger conditions
See merge request ryubing/ryujinx!28
This commit is contained in:
parent
ad88e32296
commit
5a3d6f9da8
2 changed files with 10 additions and 6 deletions
|
@ -33,7 +33,7 @@ namespace ARMeilleure.Translation.PTC
|
|||
private const string OuterHeaderMagicString = "PTCohd\0\0";
|
||||
private const string InnerHeaderMagicString = "PTCihd\0\0";
|
||||
|
||||
private const uint InternalVersion = 7007; //! To be incremented manually for each change to the ARMeilleure project.
|
||||
private const uint InternalVersion = 7008; //! To be incremented manually for each change to the ARMeilleure project.
|
||||
|
||||
private const string ActualDir = "0";
|
||||
private const string BackupDir = "1";
|
||||
|
@ -873,7 +873,7 @@ namespace ARMeilleure.Translation.PTC
|
|||
|
||||
Debug.Assert(Profiler.IsAddressInStaticCodeRange(address));
|
||||
|
||||
TranslatedFunction func = translator.Translate(address, executionMode, highCq);
|
||||
TranslatedFunction func = translator.Translate(address, executionMode, highCq, pptcTranslation: true);
|
||||
|
||||
if (func == null)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue