diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2022-01-29 19:59:34 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-29 23:59:34 +0100 |
| commit | bd412afb9fdf859643e26d2668874e3dc9cd41df (patch) | |
| tree | 73c9534e6565aa336e0de918a488691afa45952c /ARMeilleure/Translation | |
| parent | 20ce37dee6158ede18ad699338ecea083728423b (diff) | |
Fix small precision error on CPU reciprocal estimate instructions (#3061)
* Fix small precision error on CPU reciprocal estimate instructions
* PPTC version bump
Diffstat (limited to 'ARMeilleure/Translation')
| -rw-r--r-- | ARMeilleure/Translation/PTC/Ptc.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ARMeilleure/Translation/PTC/Ptc.cs b/ARMeilleure/Translation/PTC/Ptc.cs index 85e56e49..08000979 100644 --- a/ARMeilleure/Translation/PTC/Ptc.cs +++ b/ARMeilleure/Translation/PTC/Ptc.cs @@ -27,7 +27,7 @@ namespace ARMeilleure.Translation.PTC private const string OuterHeaderMagicString = "PTCohd\0\0"; private const string InnerHeaderMagicString = "PTCihd\0\0"; - private const uint InternalVersion = 3034; //! To be incremented manually for each change to the ARMeilleure project. + private const uint InternalVersion = 3061; //! To be incremented manually for each change to the ARMeilleure project. private const string ActualDir = "0"; private const string BackupDir = "1"; |
