From: notaz Date: Tue, 5 Nov 2024 00:46:05 +0000 (+0200) Subject: 3ds: no dynarec thread when 'auto' X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1b10d6e36e4907793d9cdbb4f6f13b4e37940292;p=pcsx_rearmed.git 3ds: no dynarec thread when 'auto' --- diff --git a/libpcsxcore/new_dynarec/emu_if.c b/libpcsxcore/new_dynarec/emu_if.c index 62e984b6..0b8d9e2b 100644 --- a/libpcsxcore/new_dynarec/emu_if.c +++ b/libpcsxcore/new_dynarec/emu_if.c @@ -484,6 +484,10 @@ static void ari64_thread_init(void) else { u32 cpu_count = cpu_features_get_core_amount(); enable = cpu_count > 1; +#ifdef _3DS + // bad for old3ds, reprotedly no improvement for new3ds + enable = 0; +#endif } if (!ndrc_g.thread.handle == !enable)