0
0
mirror of https://git.tardis.systems/mirrors/yuzu.git synced 2025-01-03 03:54:45 +00:00

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

- Useful purely for debugging.
This commit is contained in:
bunnei 2021-08-07 01:16:29 -07:00
parent 36cf96857e
commit 48a3496b93

View File

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