diff options
| author | 2014-04-27 21:25:16 -0400 | |
|---|---|---|
| committer | 2014-04-27 21:25:16 -0400 | |
| commit | 438dba40c1def91e9de252ef05f8650464e5c0c2 (patch) | |
| tree | 8f323d6095dfefe9d00f34cc4d7229be58a9f409 /src/core/hle/service/apt.cpp | |
| parent | Merge pull request #4 from cpp3ds/master (diff) | |
| parent | removed DISALLOW_COPY_AND_ASSIGN in favor of NonCopyable class (diff) | |
| download | yuzu-438dba40c1def91e9de252ef05f8650464e5c0c2.tar.gz yuzu-438dba40c1def91e9de252ef05f8650464e5c0c2.tar.xz yuzu-438dba40c1def91e9de252ef05f8650464e5c0c2.zip | |
Merge branch 'hle-interface-updates'
Diffstat (limited to 'src/core/hle/service/apt.cpp')
| -rw-r--r-- | src/core/hle/service/apt.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/apt.cpp b/src/core/hle/service/apt.cpp index 4f8d7248d..4a1e8c992 100644 --- a/src/core/hle/service/apt.cpp +++ b/src/core/hle/service/apt.cpp | |||
| @@ -13,16 +13,16 @@ | |||
| 13 | 13 | ||
| 14 | namespace APT_U { | 14 | namespace APT_U { |
| 15 | 15 | ||
| 16 | void Initialize() { | 16 | void Initialize(Service::Interface* self) { |
| 17 | NOTICE_LOG(OSHLE, "APT_U::Sync - Initialize"); | 17 | NOTICE_LOG(OSHLE, "APT_U::Sync - Initialize"); |
| 18 | } | 18 | } |
| 19 | 19 | ||
| 20 | void GetLockHandle() { | 20 | void GetLockHandle(Service::Interface* self) { |
| 21 | u32* cmd_buff = (u32*)HLE::GetPointer(HLE::CMD_BUFFER_ADDR + Service::kCommandHeaderOffset); | 21 | u32* cmd_buff = (u32*)HLE::GetPointer(HLE::CMD_BUFFER_ADDR + Service::kCommandHeaderOffset); |
| 22 | cmd_buff[5] = 0x00000000; // TODO: This should be an actual mutex handle | 22 | cmd_buff[5] = 0x00000000; // TODO: This should be an actual mutex handle |
| 23 | } | 23 | } |
| 24 | 24 | ||
| 25 | const HLE::FunctionDef FunctionTable[] = { | 25 | const Interface::FunctionInfo FunctionTable[] = { |
| 26 | {0x00010040, GetLockHandle, "GetLockHandle"}, | 26 | {0x00010040, GetLockHandle, "GetLockHandle"}, |
| 27 | {0x00020080, Initialize, "Initialize"}, | 27 | {0x00020080, Initialize, "Initialize"}, |
| 28 | {0x00030040, NULL, "Enable"}, | 28 | {0x00030040, NULL, "Enable"}, |