mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-25 12:12:50 +01:00
Workaround id_min/max (#2079)
This commit is contained in:
parent
e3bc2273d3
commit
be9cebbc8f
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user