From 825bacde43b1471b84ce60a169ca803a9bfaa0d1 Mon Sep 17 00:00:00 2001 From: TheLordScruffy Date: Sat, 7 Jan 2023 20:18:59 -0500 Subject: [PATCH] PPCCache: Change u32 to u8 for plru, valid, modified --- Source/Core/Core/PowerPC/PPCCache.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Core/Core/PowerPC/PPCCache.h b/Source/Core/Core/PowerPC/PPCCache.h index b39cc3d8e6..49843c9b74 100644 --- a/Source/Core/Core/PowerPC/PPCCache.h +++ b/Source/Core/Core/PowerPC/PPCCache.h @@ -30,9 +30,9 @@ struct Cache // portion of the address is by definition the same for all addresses in a set). std::array, CACHE_SETS> addrs{}; - std::array plru{}; - std::array valid{}; - std::array modified{}; + std::array plru{}; + std::array valid{}; + std::array modified{}; // Note: This is only for performance purposes; this same data could be computed at runtime // from the tags and valid fields (and that's how it's done on the actual cache)