diff --git a/src/core/file_sys/savedata_archive.cpp b/src/core/file_sys/savedata_archive.cpp index 090dc6fb0..28124eb24 100644 --- a/src/core/file_sys/savedata_archive.cpp +++ b/src/core/file_sys/savedata_archive.cpp @@ -351,8 +351,8 @@ ResultVal> SaveDataArchive::OpenDirectory( } u64 SaveDataArchive::GetFreeBytes() const { - // TODO: Stubbed to return 1GiB - return 1024 * 1024 * 1024; + // TODO: Stubbed to return 32MiB + return 1024 * 1024 * 32; } } // namespace FileSys