Oops, restore the deleted stencil test option since we haven't decided its fate yet.

This commit is contained in:
The Dax 2014-06-16 18:43:22 -04:00
parent fafd3711a8
commit c54b84aeb3

View file

@ -234,6 +234,9 @@ void GameSettingsScreen::CreateViews() {
alphaHackEnable = !g_Config.bSoftwareRendering;
alphaHack->SetEnabledPtr(&alphaHackEnable);
CheckBox *stencilTest = graphicsSettings->Add(new CheckBox(&g_Config.bDisableStencilTest, gs->T("Disable Stencil Test")));
stencilTestEnable = !g_Config.bSoftwareRendering;
stencilTest->SetEnabledPtr(&stencilTestEnable);
CheckBox *depthWrite = graphicsSettings->Add(new CheckBox(&g_Config.bAlwaysDepthWrite, gs->T("Always Depth Write")));
depthWriteEnable = !g_Config.bSoftwareRendering;