VideoConfig: Rename Separation to Depth and update descriptions.

More accurate since it's not a real IPD and Nvidia also calls it depth.
This commit is contained in:
Jules Blok
2014-12-21 14:06:16 +01:00
parent 5526b39320
commit 70b898e2c6
9 changed files with 32 additions and 30 deletions

View File

@ -1123,15 +1123,15 @@ void CFrame::OnKeyDown(wxKeyEvent& event)
{
State::Load(g_saveSlot);
}
else if (IsHotkey(event, HK_INCREASE_SEPARATION))
else if (IsHotkey(event, HK_INCREASE_DEPTH))
{
if (++g_Config.iStereoSeparation > 100)
g_Config.iStereoSeparation = 100;
if (++g_Config.iStereoDepth > 100)
g_Config.iStereoDepth = 100;
}
else if (IsHotkey(event, HK_DECREASE_SEPARATION))
else if (IsHotkey(event, HK_DECREASE_DEPTH))
{
if (--g_Config.iStereoSeparation < 0)
g_Config.iStereoSeparation = 0;
if (--g_Config.iStereoDepth < 0)
g_Config.iStereoDepth = 0;
}
else if (IsHotkey(event, HK_INCREASE_CONVERGENCE))
{