diff --git a/README.md b/README.md index fa8516e37..7db8a6d08 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 2521. +This is the source code for early-access 2522. ## Legal Notice diff --git a/src/core/hle/kernel/k_page_table.cpp b/src/core/hle/kernel/k_page_table.cpp index e968eeb54..bafe4c974 100755 --- a/src/core/hle/kernel/k_page_table.cpp +++ b/src/core/hle/kernel/k_page_table.cpp @@ -292,11 +292,10 @@ ResultCode KPageTable::MapCodeMemory(VAddr dst_addr, VAddr src_addr, std::size_t KMemoryState state{}; KMemoryPermission perm{}; - // CASCADE_CODE(CheckMemoryState(&state, &perm, nullptr, nullptr, src_addr, size, - // KMemoryState::All, KMemoryState::Normal, - // KMemoryPermission::All, KMemoryPermission::UserReadWrite, - // KMemoryAttribute::Mask, KMemoryAttribute::None, - // KMemoryAttribute::IpcAndDeviceMapped)); + CASCADE_CODE(CheckMemoryState(&state, &perm, nullptr, nullptr, src_addr, size, + KMemoryState::All, KMemoryState::Normal, KMemoryPermission::All, + KMemoryPermission::UserReadWrite, KMemoryAttribute::Mask, + KMemoryAttribute::None, KMemoryAttribute::IpcAndDeviceMapped)); if (IsRegionMapped(dst_addr, size)) { return ResultInvalidCurrentMemory;