From 97ea721e70e0c1e261a204e75f2f431469cbd87a Mon Sep 17 00:00:00 2001 From: CamilleLaVey Date: Mon, 12 Jan 2026 22:36:14 -0400 Subject: [PATCH] quickie fix --- src/video_core/engines/maxwell_3d.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp index 4832d54ecc..ecc5aff1a9 100644 --- a/src/video_core/engines/maxwell_3d.cpp +++ b/src/video_core/engines/maxwell_3d.cpp @@ -322,7 +322,7 @@ void Maxwell3D::ProcessDirtyRegisters(u32 method, u32 argument) { } regs.reg_array[method] = argument; - const auto [flag0, flag1] = GetDirtyFlagsForMethod(method); + const auto [flag0, flag1] = VideoCommon::Dirty::GetDirtyFlagsForMethod(method); dirty.flags[flag0] = true; if (flag1 != flag0) { dirty.flags[flag1] = true;