early-access version 3928

main
pineappleEA 2023-10-12 23:03:15 +02:00
parent 7fe7262395
commit 4cbf93ea33
3 changed files with 8 additions and 3 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access yuzu emulator early access
============= =============
This is the source code for early-access 3927. This is the source code for early-access 3928.
## Legal Notice ## Legal Notice

View File

@ -3405,6 +3405,11 @@ Result KPageTable::LockMemoryAndOpen(KPageGroup* out_pg, KPhysicalAddress* out_K
new_attr, KMemoryBlockDisableMergeAttribute::Locked, new_attr, KMemoryBlockDisableMergeAttribute::Locked,
KMemoryBlockDisableMergeAttribute::None); KMemoryBlockDisableMergeAttribute::None);
// If we have an output page group, open.
if (out_pg) {
out_pg->Open();
}
R_SUCCEED(); R_SUCCEED();
} }

View File

@ -128,9 +128,9 @@ void IAlbumAccessorService::GetAlbumFileListEx0(HLERequestContext& ctx) {
ctx.WriteBuffer(entries); ctx.WriteBuffer(entries);
} }
IPC::ResponseBuilder rb{ctx, 3}; IPC::ResponseBuilder rb{ctx, 4};
rb.Push(result); rb.Push(result);
rb.Push(entries.size()); rb.Push<u64>(entries.size());
} }
void IAlbumAccessorService::GetAutoSavingStorage(HLERequestContext& ctx) { void IAlbumAccessorService::GetAutoSavingStorage(HLERequestContext& ctx) {