fs: update IndirectStorage for 10.x, bugfixes

This commit is contained in:
Michael Scire
2020-06-25 17:36:05 -07:00
parent f594de0081
commit f197b88dd7
3 changed files with 12 additions and 3 deletions

View File

@@ -133,7 +133,7 @@ namespace ams::fssystem {
virtual Result GetSize(s64 *out) override {
AMS_ASSERT(out != nullptr);
*out = this->table.GetSize();
*out = this->table.GetEnd();
return ResultSuccess();
}