2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

maxwell_3d: Use two tables instead of three for dirty flags

This commit is contained in:
ReinUsesLisp 2020-01-02 22:27:52 -03:00
parent a5bfc0d045
commit 15cadc3948

View file

@ -1294,7 +1294,7 @@ public:
struct {
std::bitset<std::numeric_limits<u8>::max()> flags;
std::bitset<std::numeric_limits<u8>::max()> on_write_stores;
std::array<std::array<u8, Regs::NUM_REGS>, 3> tables{};
std::array<std::array<u8, Regs::NUM_REGS>, 2> tables{};
} dirty;
private: