From f83040c1b32455bdae2167462567fe66137c68be Mon Sep 17 00:00:00 2001 From: CamilleLaVey Date: Thu, 15 Jan 2026 00:03:39 -0400 Subject: [PATCH] Revert "Meh another try." --- src/video_core/dirty_flags.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video_core/dirty_flags.h b/src/video_core/dirty_flags.h index 8bc41bca63..879d207112 100644 --- a/src/video_core/dirty_flags.h +++ b/src/video_core/dirty_flags.h @@ -85,8 +85,8 @@ constexpr std::pair GetDirtyFlagsForMethod(u32 method) { return {Descriptors, NullEntry}; } - if (method >= OFF_RT && method < OFF_RT + 64) { - const u32 rt_idx = (method - OFF_RT) / 8; + if (method >= OFF_RT && method < OFF_RT + 32) { + const u32 rt_idx = (method - OFF_RT) / 4; return {static_cast(ColorBuffer0 + rt_idx), RenderTargets}; }