diff options
| author | 2014-05-18 22:24:26 -0400 | |
|---|---|---|
| committer | 2014-05-18 22:24:26 -0400 | |
| commit | 088a2de9a6f593460dcd532c4a217e0c0fc4fd72 (patch) | |
| tree | aa80dc1d0ab94f2c3d21b8d0e8208327e9f4f181 /src/core | |
| parent | - renamed NewHandle to CreateHandle (diff) | |
| download | yuzu-088a2de9a6f593460dcd532c4a217e0c0fc4fd72.tar.gz yuzu-088a2de9a6f593460dcd532c4a217e0c0fc4fd72.tar.xz yuzu-088a2de9a6f593460dcd532c4a217e0c0fc4fd72.zip | |
renamed "session" to "handle"
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/hle/syscall.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/syscall.cpp b/src/core/hle/syscall.cpp index 84c247ae3..9a1235246 100644 --- a/src/core/hle/syscall.cpp +++ b/src/core/hle/syscall.cpp | |||
| @@ -89,9 +89,9 @@ Result ConnectToPort(void* out, const char* port_name) { | |||
| 89 | } | 89 | } |
| 90 | 90 | ||
| 91 | /// Synchronize to an OS service | 91 | /// Synchronize to an OS service |
| 92 | Result SendSyncRequest(Handle session) { | 92 | Result SendSyncRequest(Handle handle) { |
| 93 | DEBUG_LOG(SVC, "SendSyncRequest called session=0x%08X"); | 93 | DEBUG_LOG(SVC, "SendSyncRequest called handle=0x%08X"); |
| 94 | Service::Interface* service = Service::g_manager->FetchFromHandle(session); | 94 | Service::Interface* service = Service::g_manager->FetchFromHandle(handle); |
| 95 | service->Sync(); | 95 | service->Sync(); |
| 96 | return 0; | 96 | return 0; |
| 97 | } | 97 | } |