Browse Source

[engines, maxwell] Guard for flags on extended register dirty tracking table

pull/3296/head
CamilleLaVey 2 months ago
committed by lizzie
parent
commit
30ba17085a
  1. 2
      src/video_core/engines/maxwell_3d.cpp

2
src/video_core/engines/maxwell_3d.cpp

@ -327,8 +327,10 @@ void Maxwell3D::ProcessDirtyRegisters(u32 method, u32 argument) {
const u8 flag0 = table0[method];
const u8 flag1 = table1[method];
dirty.flags[flag0] = true;
if (flag1 != flag0) {
dirty.flags[flag1] = true;
}
}
void Maxwell3D::ProcessMethodCall(u32 method, u32 argument, u32 nonshadow_argument, bool is_last_call) {
switch (method) {

Loading…
Cancel
Save