mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Tweak to jit detection based on feedback to #14201
This commit is contained in:
parent
0fb655acf6
commit
45628cde95
1 changed files with 1 additions and 1 deletions
|
@ -228,7 +228,7 @@ int main(int argc, char *argv[])
|
|||
g_iosVersionMinor = 0;
|
||||
}
|
||||
|
||||
if (g_iosVersionMajor > 14 || (g_iosVersionMajor == 14 && g_iosVersionMinor >= 3)) {
|
||||
if (g_iosVersionMajor > 14 || (g_iosVersionMajor == 14 && g_iosVersionMinor >= 4)) {
|
||||
g_jitAvailable = false;
|
||||
} else {
|
||||
g_jitAvailable = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue