Fix GetEntryType IPC return type

This commit is contained in:
Billy Laws 2022-11-10 21:52:41 +00:00
parent ec220c8ea9
commit 6c968e0357

View File

@ -29,7 +29,7 @@ namespace skyline::service::fssrv {
auto type{backing->GetEntryType(path)};
if (type) {
response.Push(*type);
response.Push(static_cast<u32>(*type));
return {};
} else {
response.Push<u32>(0);