summaryrefslogtreecommitdiffstats
path: root/src/skel/win/win.cpp
diff options
context:
space:
mode:
authorerorcun <erorcunerorcun@hotmail.com.tr>2021-08-15 02:29:49 +0200
committererorcun <erorcunerorcun@hotmail.com.tr>2021-08-15 03:07:48 +0200
commit747ae0427950b0f0883b46db4f85ca34a684536f (patch)
treea61a7ee7844dfc061b49a1f6a5a06c6b031f7289 /src/skel/win/win.cpp
parentRevert "map memory usage high default" (diff)
downloadre3-747ae0427950b0f0883b46db4f85ca34a684536f.tar
re3-747ae0427950b0f0883b46db4f85ca34a684536f.tar.gz
re3-747ae0427950b0f0883b46db4f85ca34a684536f.tar.bz2
re3-747ae0427950b0f0883b46db4f85ca34a684536f.tar.lz
re3-747ae0427950b0f0883b46db4f85ca34a684536f.tar.xz
re3-747ae0427950b0f0883b46db4f85ca34a684536f.tar.zst
re3-747ae0427950b0f0883b46db4f85ca34a684536f.zip
Diffstat (limited to '')
-rw-r--r--src/skel/win/win.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/skel/win/win.cpp b/src/skel/win/win.cpp
index 01e56701..95ac28aa 100644
--- a/src/skel/win/win.cpp
+++ b/src/skel/win/win.cpp
@@ -2181,10 +2181,12 @@ WinMain(HINSTANCE instance,
#ifdef LOAD_INI_SETTINGS
LoadINIControllerSettings();
- if (connectedPadButtons != 0) {
- ControlsManager.InitDefaultControlConfigJoyPad(connectedPadButtons);
- SaveINIControllerSettings();
- }
+ if (connectedPadButtons != 0)
+ ControlsManager.InitDefaultControlConfigJoyPad(connectedPadButtons); // add (connected-saved) amount of new button assignments on top of ours
+
+ // these have 2 purposes: creating .ini at the start, and adding newly introduced settings to old .ini at the start
+ SaveINISettings();
+ SaveINIControllerSettings();
#endif
}