From 55c593404b3ec5278a5e7e51a178283291f5fd4c Mon Sep 17 00:00:00 2001 From: VoxelTek <53562267+VoxelTek@users.noreply.github.com> Date: Tue, 17 Jun 2025 12:28:30 +1000 Subject: [PATCH] Switch UseJoystick and JoystickIndex types (#324) --- CONFIG/config.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONFIG/config.cpp b/CONFIG/config.cpp index fc4ba324..b00bece1 100644 --- a/CONFIG/config.cpp +++ b/CONFIG/config.cpp @@ -294,8 +294,8 @@ void CConfigApp::WriteRegisterSettings() const SetIniBool(dict, "isle:3DSound", m_3d_sound); SetIniBool(dict, "isle:Music", m_music); - SetIniInt(dict, "isle:UseJoystick", m_use_joystick); - SetIniBool(dict, "isle:JoystickIndex", m_joystick_index); + SetIniBool(dict, "isle:UseJoystick", m_use_joystick); + SetIniInt(dict, "isle:JoystickIndex", m_joystick_index); SetIniBool(dict, "isle:Draw Cursor", m_draw_cursor); SetIniBool(dict, "isle:Back Buffers in Video RAM", m_3d_video_ram);