VideoConfig: Further optimize convergence and separation values and update their descriptions.

Previous convergence distance was much too large.
This commit is contained in:
Jules Blok
2014-11-27 15:28:00 +01:00
parent b3c6602d06
commit 6d51455195
4 changed files with 14 additions and 14 deletions

View File

@ -1130,18 +1130,18 @@ void CFrame::OnKeyDown(wxKeyEvent& event)
}
else if (IsHotkey(event, HK_DECREASE_SEPARATION))
{
if (--g_Config.iStereoSeparation < 10)
g_Config.iStereoSeparation = 10;
if (--g_Config.iStereoSeparation < 0)
g_Config.iStereoSeparation = 0;
}
else if (IsHotkey(event, HK_INCREASE_CONVERGENCE))
{
if (++g_Config.iStereoConvergence > 200)
g_Config.iStereoConvergence = 200;
if (++g_Config.iStereoConvergence > 500)
g_Config.iStereoConvergence = 500;
}
else if (IsHotkey(event, HK_DECREASE_CONVERGENCE))
{
if (--g_Config.iStereoConvergence < 10)
g_Config.iStereoConvergence = 10;
if (--g_Config.iStereoConvergence < 0)
g_Config.iStereoConvergence = 0;
}
else