Display: Only reapply state on load.

Shouldn't be needed on save.
This commit is contained in:
Unknown W. Brackets 2017-12-09 21:54:48 -08:00
parent 6f99383733
commit 1776726bd6

View File

@ -317,9 +317,10 @@ void __DisplayDoState(PointerWrap &p) {
}
gpu->DoState(p);
gpu->ReapplyGfxState();
if (p.mode == p.MODE_READ) {
gpu->ReapplyGfxState();
if (hasSetMode) {
gpu->InitClear();
}