Revert "Always set controller port device descriptors"

This reverts commit 0ced9ca9131d41e3a1eb849fd4e43052f85d2b6a.
This commit is contained in:
twinaphex 2017-09-12 08:46:08 +02:00
parent 278d171483
commit b1b09837af

View File

@ -1015,6 +1015,7 @@ static void command_event_init_controllers(void)
RARCH_LOG("%s %u.\n", RARCH_LOG("%s %u.\n",
msg_hash_to_str(MSG_VALUE_DISCONNECTING_DEVICE_FROM_PORT), msg_hash_to_str(MSG_VALUE_DISCONNECTING_DEVICE_FROM_PORT),
i + 1); i + 1);
set_controller = true;
break; break;
case RETRO_DEVICE_JOYPAD: case RETRO_DEVICE_JOYPAD:
break; break;
@ -1025,14 +1026,18 @@ static void command_event_init_controllers(void)
RARCH_LOG("%s %u: %s (ID: %u).\n", RARCH_LOG("%s %u: %s (ID: %u).\n",
msg_hash_to_str(MSG_CONNECTING_TO_PORT), msg_hash_to_str(MSG_CONNECTING_TO_PORT),
device, ident, i+1); device, ident, i+1);
set_controller = true;
break; break;
} }
if (set_controller)
{
pad.device = device; pad.device = device;
pad.port = i; pad.port = i;
core_set_controller_port_device(&pad); core_set_controller_port_device(&pad);
} }
} }
}
static void command_event_deinit_core(bool reinit) static void command_event_deinit_core(bool reinit)
{ {