mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-08 00:59:44 +00:00
VideoConfig: Further optimize convergence and separation values and update their descriptions.
Previous convergence distance was much too large.
This commit is contained in:
parent
b3c6602d06
commit
6d51455195
4 changed files with 14 additions and 14 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue