Browse Source

core: hle: kernel: k_auto_object: Add GetName method.

- Useful purely for debugging.
nce_cpp
bunnei 4 years ago
parent
commit
5892c23e30
  1. 4
      src/core/hle/kernel/k_auto_object.h

4
src/core/hle/kernel/k_auto_object.h

@ -170,6 +170,10 @@ public:
} }
} }
const std::string& GetName() const {
return name;
}
private: private:
void RegisterWithKernel(); void RegisterWithKernel();
void UnregisterWithKernel(); void UnregisterWithKernel();

Loading…
Cancel
Save