From 9791ebebce2b1548716f28bd4fd69f0b413ed4c3 Mon Sep 17 00:00:00 2001 From: Flyinghead Date: Sun, 28 Jul 2019 18:28:22 +0200 Subject: [PATCH] wince: fix wince page lookup --- core/hw/sh4/modules/wince.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/hw/sh4/modules/wince.h b/core/hw/sh4/modules/wince.h index 74bfcc4db..472d6834c 100644 --- a/core/hw/sh4/modules/wince.h +++ b/core/hw/sh4/modules/wince.h @@ -373,7 +373,7 @@ static bool wince_resolve_address(u32 va, TLB_Entry &entry) u32 sz = entry.Data.SZ1 * 2 + entry.Data.SZ0; entry.Address.VPN = (va & mmu_mask[sz]) >> 10; - true; + return true; } } }