2
0
mirror of https://github.com/skyline-emu/skyline.git synced 2025-05-13 21:27:09 +03:00

Fix GetEntryType IPC return type

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

@ -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);