mirror of
https://github.com/ReMinecraftPE/mcpe.git
synced 2025-01-22 09:11:56 -05:00
* Save the split controls option.
This commit is contained in:
parent
0d23a455ed
commit
58e03d6758
1 changed files with 3 additions and 0 deletions
|
@ -241,6 +241,8 @@ void Options::_load()
|
|||
m_bInvertMouse = readBool(value);
|
||||
else if (key == "ctrl_autojump")
|
||||
m_bAutoJump = readBool(value);
|
||||
else if (key == "ctrl_split")
|
||||
m_bFancyGraphics = readBool(value);
|
||||
else if (key == "gfx_fancygraphics")
|
||||
m_bFancyGraphics = readBool(value);
|
||||
else if (key == "mp_server_visible_default")
|
||||
|
@ -377,6 +379,7 @@ std::vector<std::string> Options::getOptionStrings()
|
|||
SO("mp_username", m_playerName);
|
||||
SO("ctrl_invertmouse", saveBool(m_bInvertMouse));
|
||||
SO("ctrl_autojump", saveBool(m_bAutoJump));
|
||||
SO("ctrl_split", saveBool(m_bSplitControls));
|
||||
SO("gfx_fancygraphics", saveBool(m_bFancyGraphics));
|
||||
SO("mp_server_visible_default", saveBool(m_bServerVisibleDefault));
|
||||
SO("gfx_smoothlighting", saveBool(m_bAmbientOcclusion));
|
||||
|
|
Loading…
Reference in a new issue