diff options
author | bunnei <ericbunnie@gmail.com> | 2014-05-23 00:48:14 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-05-23 00:48:14 +0200 |
commit | 9fddba68435f6e276bfb40c793f1ca0f8b984ec9 (patch) | |
tree | 7640c1fbe5c6a4132d8c4529e12382d90b4388ad /src/core/hle | |
parent | arm_interpreter: fixed load context to currently resume a thread (diff) | |
download | yuzu-9fddba68435f6e276bfb40c793f1ca0f8b984ec9.tar yuzu-9fddba68435f6e276bfb40c793f1ca0f8b984ec9.tar.gz yuzu-9fddba68435f6e276bfb40c793f1ca0f8b984ec9.tar.bz2 yuzu-9fddba68435f6e276bfb40c793f1ca0f8b984ec9.tar.lz yuzu-9fddba68435f6e276bfb40c793f1ca0f8b984ec9.tar.xz yuzu-9fddba68435f6e276bfb40c793f1ca0f8b984ec9.tar.zst yuzu-9fddba68435f6e276bfb40c793f1ca0f8b984ec9.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/service/apt.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/apt.cpp b/src/core/hle/service/apt.cpp index b01f35ac5..32759a087 100644 --- a/src/core/hle/service/apt.cpp +++ b/src/core/hle/service/apt.cpp @@ -23,6 +23,7 @@ void GetLockHandle(Service::Interface* self) { u32 flags = cmd_buff[1]; // TODO(bunnei): Figure out the purpose of the flag field cmd_buff[1] = 0; // No error cmd_buff[5] = Kernel::CreateMutex(false); + DEBUG_LOG(KERNEL, "APT_U::GetLockHandle called : created handle 0x%08X", cmd_buff[5]); } const Interface::FunctionInfo FunctionTable[] = { |