0
0
mirror of https://git.743378673.xyz/MeloNX/MeloNX.git synced 2025-05-14 08:45:18 +00:00
MeloNX/ChocolArm64/ATranslatedSubType.cs
gdkchan 3edb66f389
Improve CPU initial translation speeds (#50)
* Add background translation to the CPU

* Do not use a separate thread for translation, implement 2 tiers translation

* Remove unnecessary usings

* Lower MinCallCountForReJit

* Remove unused variable
2018-03-04 14:09:59 -03:00

9 lines
118 B
C#

namespace ChocolArm64
{
enum ATranslatedSubType
{
SubBlock,
SubTier0,
SubTier1
}
}