core: hle: kernel: k_auto_object: Add GetName method.
- Useful purely for debugging.
This commit is contained in:
parent
3239442de6
commit
07690572f7
|
@ -170,6 +170,10 @@ public:
|
|||
}
|
||||
}
|
||||
|
||||
const std::string& GetName() const {
|
||||
return name;
|
||||
}
|
||||
|
||||
private:
|
||||
void RegisterWithKernel();
|
||||
void UnregisterWithKernel();
|
||||
|
|
Reference in New Issue