From 2944fd26e339ff215360ac4116e357064409bbf9 Mon Sep 17 00:00:00 2001 From: Martino Fontana Date: Wed, 19 Aug 2026 21:12:10 +0200 Subject: [PATCH] MMU: Fix non-integral HostTryRead not passing space Randomly spotted. Didn't test, but it was obviously wrong. Fixes regression from 8a97ce9124c94f868b078d67208f81795f259323. --- Source/Core/Core/PowerPC/MMU.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/MMU.h b/Source/Core/Core/PowerPC/MMU.h index 14196df06d..65a4cb8830 100644 --- a/Source/Core/Core/PowerPC/MMU.h +++ b/Source/Core/Core/PowerPC/MMU.h @@ -167,7 +167,7 @@ public: requires(!std::unsigned_integral) { using U = Common::MakeUnsignedSameSize; - std::optional> result = HostTryRead(guard, address); + std::optional> result = HostTryRead(guard, address, space); return std::bit_cast>>(result); } static std::optional>