Browse Source

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

- Useful purely for debugging.
nce_cpp
bunnei 4 years ago
parent
commit
1458629fc8
  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:
void RegisterWithKernel();
void UnregisterWithKernel();

Loading…
Cancel
Save