Corregit bug en el text a l'hora d'intercanviar els mandos. Apareixia el nom del mando que te guardat a la configuració pero no estava connectat
This commit is contained in:
@@ -378,7 +378,8 @@ void Title::swapControllers()
|
||||
for (int i = 0; i < MAX_CONTROLLERS; ++i)
|
||||
{
|
||||
const int index = playerControllerIndex[i];
|
||||
if (options.controller[index].name != "NO NAME")
|
||||
//if (options.controller[index].name != "NO NAME")
|
||||
if (options.controller[index].plugged)
|
||||
{
|
||||
text[i] = "Jugador " + std::to_string(i + 1) + ": " + options.controller[index].name;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user