Workaround id_min/max (#2079)

This commit is contained in:
raven02 2016-08-20 21:27:50 +08:00 committed by GitHub
parent e3bc2273d3
commit be9cebbc8f
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ class ppu_thread : public cpu_thread
public: public:
using id_base = ppu_thread; using id_base = ppu_thread;
static constexpr u32 id_min = 0x80000000; // TODO (used to determine thread type) static constexpr u32 id_min = 0x70000000; // TODO (used to determine thread type)
static constexpr u32 id_max = 0x8fffffff; static constexpr u32 id_max = 0x7fffffff;
virtual std::string get_name() const override; virtual std::string get_name() const override;
virtual std::string dump() const override; virtual std::string dump() const override;