From 04c3d8d1bb625f1446b000e4e4513339fa2d8c92 Mon Sep 17 00:00:00 2001 From: Eladash Date: Wed, 30 Sep 2020 21:08:09 +0300 Subject: [PATCH] Set max PPU threads to 100 --- rpcs3/Emu/Cell/PPUThread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/PPUThread.h b/rpcs3/Emu/Cell/PPUThread.h index 4fb4cfdc07..a31618734e 100644 --- a/rpcs3/Emu/Cell/PPUThread.h +++ b/rpcs3/Emu/Cell/PPUThread.h @@ -64,7 +64,7 @@ class ppu_thread : public cpu_thread public: static const u32 id_base = 0x01000000; // TODO (used to determine thread type) static const u32 id_step = 1; - static const u32 id_count = 2048; + static const u32 id_count = 100; static constexpr std::pair id_invl_range = {12, 12}; virtual std::string dump_all() const override;