maxwell_3d: change declaration order

This commit is contained in:
namkazy 2020-03-22 13:41:16 +07:00
parent 30112fcb3c
commit 51e13ff50c

View file

@ -1276,7 +1276,9 @@ public:
};
std::array<u32, NUM_REGS> reg_array;
};
} regs{};
};
Regs regs{};
/// Store temporary hw register values, used by some calls to restore state after a operation
Regs shadow_state;