diff options
| author | 2015-01-31 10:37:32 -0200 | |
|---|---|---|
| committer | 2015-02-02 15:37:01 -0200 | |
| commit | 8441591659a5176ab9d75309d4ecc9c2d6716e91 (patch) | |
| tree | 370fd959eec6626e9059f385594d736a92824ac4 /src/core | |
| parent | Thread: Modernize two functions that slipped through previous rebases (diff) | |
| download | yuzu-8441591659a5176ab9d75309d4ecc9c2d6716e91.tar.gz yuzu-8441591659a5176ab9d75309d4ecc9c2d6716e91.tar.xz yuzu-8441591659a5176ab9d75309d4ecc9c2d6716e91.zip | |
FS: Remove use of GetHandle
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/hle/service/fs/archive.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/fs/archive.cpp b/src/core/hle/service/fs/archive.cpp index 0ce9ad4d6..ccf132f31 100644 --- a/src/core/hle/service/fs/archive.cpp +++ b/src/core/hle/service/fs/archive.cpp | |||
| @@ -163,7 +163,7 @@ public: | |||
| 163 | case FileCommand::OpenLinkFile: | 163 | case FileCommand::OpenLinkFile: |
| 164 | { | 164 | { |
| 165 | LOG_WARNING(Service_FS, "(STUBBED) File command OpenLinkFile %s", GetName().c_str()); | 165 | LOG_WARNING(Service_FS, "(STUBBED) File command OpenLinkFile %s", GetName().c_str()); |
| 166 | cmd_buff[3] = GetHandle(); | 166 | cmd_buff[3] = Kernel::g_handle_table.Create(this).ValueOr(INVALID_HANDLE); |
| 167 | break; | 167 | break; |
| 168 | } | 168 | } |
| 169 | 169 | ||