mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-12-29 13:45:29 +03:00
Fix GetEntryType IPC return type
This commit is contained in:
parent
ec220c8ea9
commit
6c968e0357
@ -29,7 +29,7 @@ namespace skyline::service::fssrv {
|
|||||||
auto type{backing->GetEntryType(path)};
|
auto type{backing->GetEntryType(path)};
|
||||||
|
|
||||||
if (type) {
|
if (type) {
|
||||||
response.Push(*type);
|
response.Push(static_cast<u32>(*type));
|
||||||
return {};
|
return {};
|
||||||
} else {
|
} else {
|
||||||
response.Push<u32>(0);
|
response.Push<u32>(0);
|
||||||
|
Loading…
Reference in New Issue
Block a user