Skip to content
Snippets Groups Projects
Commit 344162db authored by Charles Lombardo's avatar Charles Lombardo
Browse files

android: Default to player number 0 if we get an input from an unrecognized controller

parent 48f913b6
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,7 @@ object InputHandler {
private fun getPlayerNumber(index: Int, deviceId: Int = -1): Int {
var deviceIndex = index
if (deviceId != -1) {
deviceIndex = controllerIds[deviceId]!!
deviceIndex = controllerIds[deviceId] ?: 0
}
// TODO: Joycons are handled as different controllers. Find a way to merge them.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment