allow retroarch to run without jit
Signed-off-by: Joseph Mattiello <git@joemattiello.com>
This commit is contained in:
parent
a9d03b6efd
commit
b99215e8a3
|
@ -2026,7 +2026,7 @@ static bool set_dx11_hw_render()
|
|||
// Loading/unloading games
|
||||
bool retro_load_game(const struct retro_game_info *game)
|
||||
{
|
||||
#if defined(IOS)
|
||||
#if defined(IOS) && !defined(NO_JIT)
|
||||
bool can_jit;
|
||||
if (environ_cb(RETRO_ENVIRONMENT_GET_JIT_CAPABLE, &can_jit) && !can_jit) {
|
||||
// jit is required both for performance and for audio. trying to run
|
||||
|
|
Loading…
Reference in New Issue