diff options
| author | FICTURE7 <FICTURE7@gmail.com> | 2021-01-25 03:01:25 +0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-25 10:01:25 +1100 |
| commit | ddf1105bcb6c9884e1188d5f63f0890ef1806176 (patch) | |
| tree | 0aaa0cebddb53d40772cdbc10438d451d68c2446 /ARMeilleure/Translation | |
| parent | f94acdb4efcf48555481f38417f8befa4ca560ad (diff) | |
Add VCLZ.* fast path (#1917)
* Add VCLZ fast path
* Add VCLZ.8B/16B SSSE3 fast path
* Add VCLZ.4H/8H SSSE3 fast path
* Add VCLZ.2S/4S SSE2 fast path
* Improve CLZ.4H/8H fast path
* Improve CLZ.2S/4S fast path
* Set PPTC version
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 8f250a55..92094e62 100644 --- a/ARMeilleure/Translation/PTC/Ptc.cs +++ b/ARMeilleure/Translation/PTC/Ptc.cs @@ -22,7 +22,7 @@ namespace ARMeilleure.Translation.PTC { private const string HeaderMagic = "PTChd"; - private const int InternalVersion = 1817; //! To be incremented manually for each change to the ARMeilleure project. + private const int InternalVersion = 1917; //! To be incremented manually for each change to the ARMeilleure project. private const string ActualDir = "0"; private const string BackupDir = "1"; |
