mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
VideoConfig: Rename StereoFocalLength to StereoConvergence.
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user