From 3d866bd35dc7a58135b1e9894003e365d9c538c2 Mon Sep 17 00:00:00 2001 From: Nolan Check Date: Sat, 13 Nov 2010 00:05:14 +0000 Subject: [PATCH] DX11 plugin: Fix a small oversight git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6389 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_VideoDX11/Src/GfxState.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Plugins/Plugin_VideoDX11/Src/GfxState.cpp b/Source/Plugins/Plugin_VideoDX11/Src/GfxState.cpp index 1138e10f13..070793f278 100644 --- a/Source/Plugins/Plugin_VideoDX11/Src/GfxState.cpp +++ b/Source/Plugins/Plugin_VideoDX11/Src/GfxState.cpp @@ -158,6 +158,7 @@ void EmuGfxState::ApplyState() context->Map(vscbuf, 0, D3D11_MAP_WRITE_DISCARD, 0, &map); memcpy(map.pData, vsconstants, sizeof(vsconstants)); context->Unmap(vscbuf, 0); + vscbufchanged = false; } D3D::context->VSSetConstantBuffers(0, 1, &vscbuf);