Skip to content

Commit

Permalink
Add configurable default option for centering
Browse files Browse the repository at this point in the history
  • Loading branch information
ikt32 committed May 18, 2024
1 parent 01a9a6a commit 7bdb54b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/DS4Emulator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ int main(int argc, char **argv)

KEY_ID_STOP_CENTERING_NAME = IniFile.ReadString("KeyboardMouse", "StopCenteringKey", "C");
int KEY_ID_STOP_CENTERING = KeyNameToKeyCode(KEY_ID_STOP_CENTERING_NAME);
bool CenteringEnable = true;
bool CenteringEnable = IniFile.ReadBoolean("KeyboardMouse", "EnableCentering", true);

bool InvertX = IniFile.ReadBoolean("Main", "InvertX", false);
bool InvertY = IniFile.ReadBoolean("Main", "InvertY", false);
Expand Down

0 comments on commit 7bdb54b

Please sign in to comment.