From f18e1b254257938de542e3d37ae5f1098d91da77 Mon Sep 17 00:00:00 2001 From: lizzie Date: Tue, 10 Mar 2026 05:49:56 +0000 Subject: [PATCH] unused var --- src/core/arm/nce/arm_nce.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/core/arm/nce/arm_nce.cpp b/src/core/arm/nce/arm_nce.cpp index 5684735238..3ad92a4a97 100644 --- a/src/core/arm/nce/arm_nce.cpp +++ b/src/core/arm/nce/arm_nce.cpp @@ -175,8 +175,6 @@ bool ArmNce::HandleGuestAccessFault(GuestContext* guest_ctx, void* raw_info, voi } else { // Corresponds to the 2nd page, this means the access is split between two pages auto const addr_c2 = (addr_c1 & ~Memory::YUZU_PAGEMASK) + Memory::YUZU_PAGESIZE; - auto const count_c2 = (addr_c1 + acc_size) & Memory::YUZU_PAGEMASK; - auto const count_c1 = acc_size - count_c2; // Heres the stupid part, how the fuck do we decide if either the first // or second pages should be the ones to propagate the fault? if (memory.InvalidateNCE(addr_c1, Memory::YUZU_PAGESIZE))