From be9cebbc8f3abcf240c7518646dc165814fe9218 Mon Sep 17 00:00:00 2001 From: raven02 Date: Sat, 20 Aug 2016 21:27:50 +0800 Subject: [PATCH] Workaround id_min/max (#2079) --- rpcs3/Emu/Cell/PPUThread.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/Emu/Cell/PPUThread.h b/rpcs3/Emu/Cell/PPUThread.h index fa05e6cdee..7f188f55bb 100644 --- a/rpcs3/Emu/Cell/PPUThread.h +++ b/rpcs3/Emu/Cell/PPUThread.h @@ -21,8 +21,8 @@ class ppu_thread : public cpu_thread public: using id_base = ppu_thread; - static constexpr u32 id_min = 0x80000000; // TODO (used to determine thread type) - static constexpr u32 id_max = 0x8fffffff; + static constexpr u32 id_min = 0x70000000; // TODO (used to determine thread type) + static constexpr u32 id_max = 0x7fffffff; virtual std::string get_name() const override; virtual std::string dump() const override;