mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-02 13:27:52 +00:00
FS: Remove use of GetHandle
This commit is contained in:
parent
664c79ff47
commit
8441591659
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ public:
|
||||||
case FileCommand::OpenLinkFile:
|
case FileCommand::OpenLinkFile:
|
||||||
{
|
{
|
||||||
LOG_WARNING(Service_FS, "(STUBBED) File command OpenLinkFile %s", GetName().c_str());
|
LOG_WARNING(Service_FS, "(STUBBED) File command OpenLinkFile %s", GetName().c_str());
|
||||||
cmd_buff[3] = GetHandle();
|
cmd_buff[3] = Kernel::g_handle_table.Create(this).ValueOr(INVALID_HANDLE);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue