VideoConfig: Rename StereoFocalLength to StereoConvergence.

This commit is contained in:
Jules Blok
2014-11-24 11:50:35 +01:00
parent 9b2cd82da5
commit 0f4d59f612
6 changed files with 11 additions and 11 deletions

View File

@ -1135,13 +1135,13 @@ void CFrame::OnKeyDown(wxKeyEvent& event)
}
else if (IsHotkey(event, HK_INCREASE_CONVERGENCE))
{
if (++g_Config.iStereoFocalLength > 200)
g_Config.iStereoFocalLength = 200;
if (++g_Config.iStereoConvergence > 200)
g_Config.iStereoConvergence = 200;
}
else if (IsHotkey(event, HK_DECREASE_CONVERGENCE))
{
if (--g_Config.iStereoFocalLength < 10)
g_Config.iStereoFocalLength = 10;
if (--g_Config.iStereoConvergence < 10)
g_Config.iStereoConvergence = 10;
}
else