summaryrefslogtreecommitdiffstats
path: root/src/core/re3.cpp
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2021-02-03 01:41:12 +0100
committerSergeanur <s.anureev@yandex.ua>2021-02-03 01:41:12 +0100
commit91612eb45a4195484b43e446907317dbffbff730 (patch)
treee240252a44da318e5854d851e524a3ada6ca869c /src/core/re3.cpp
parentAdd radio off text (diff)
downloadre3-91612eb45a4195484b43e446907317dbffbff730.tar
re3-91612eb45a4195484b43e446907317dbffbff730.tar.gz
re3-91612eb45a4195484b43e446907317dbffbff730.tar.bz2
re3-91612eb45a4195484b43e446907317dbffbff730.tar.lz
re3-91612eb45a4195484b43e446907317dbffbff730.tar.xz
re3-91612eb45a4195484b43e446907317dbffbff730.tar.zst
re3-91612eb45a4195484b43e446907317dbffbff730.zip
Diffstat (limited to '')
-rw-r--r--src/core/re3.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/re3.cpp b/src/core/re3.cpp
index 474a4644..62d963ca 100644
--- a/src/core/re3.cpp
+++ b/src/core/re3.cpp
@@ -369,6 +369,7 @@ bool LoadINISettings()
ReadIniIfExists("Controller", "HorizantalMouseSens", &TheCamera.m_fMouseAccelHorzntl);
ReadIniIfExists("Controller", "InvertMouseVertically", &MousePointerStateHelper.bInvertVertically);
ReadIniIfExists("Controller", "DisableMouseSteering", &CVehicle::m_bDisableMouseSteering);
+ ReadIniIfExists("Controller", "Vibration", &FrontEndMenuManager.m_PrefsUseVibration);
ReadIniIfExists("Audio", "SfxVolume", &FrontEndMenuManager.m_PrefsSfxVolume);
ReadIniIfExists("Audio", "MusicVolume", &FrontEndMenuManager.m_PrefsMusicVolume);
ReadIniIfExists("Audio", "Radio", &FrontEndMenuManager.m_PrefsRadioStation);
@@ -455,6 +456,7 @@ void SaveINISettings()
StoreIni("Controller", "HorizantalMouseSens", TheCamera.m_fMouseAccelHorzntl);
StoreIni("Controller", "InvertMouseVertically", MousePointerStateHelper.bInvertVertically);
StoreIni("Controller", "DisableMouseSteering", CVehicle::m_bDisableMouseSteering);
+ StoreIni("Controller", "Vibration", FrontEndMenuManager.m_PrefsUseVibration);
StoreIni("Audio", "SfxVolume", FrontEndMenuManager.m_PrefsSfxVolume);
StoreIni("Audio", "MusicVolume", FrontEndMenuManager.m_PrefsMusicVolume);
StoreIni("Audio", "Radio", FrontEndMenuManager.m_PrefsRadioStation);