diff options
| -rw-r--r-- | src/android/app/src/main/java/org/yuzu/yuzu_emu/features/input/model/PlayerInput.kt | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/src/android/app/src/main/java/org/yuzu/yuzu_emu/features/input/model/PlayerInput.kt b/src/android/app/src/main/java/org/yuzu/yuzu_emu/features/input/model/PlayerInput.kt index d35de80c4..a84ac77a2 100644 --- a/src/android/app/src/main/java/org/yuzu/yuzu_emu/features/input/model/PlayerInput.kt +++ b/src/android/app/src/main/java/org/yuzu/yuzu_emu/features/input/model/PlayerInput.kt @@ -64,17 +64,17 @@ data class PlayerInput(      fun hasMapping(): Boolean {          var hasMapping = false          buttons.forEach { -            if (it != "[empty]") { +            if (it != "[empty]" && it.isNotEmpty()) {                  hasMapping = true              }          }          analogs.forEach { -            if (it != "[empty]") { +            if (it != "[empty]" && it.isNotEmpty()) {                  hasMapping = true              }          }          motions.forEach { -            if (it != "[empty]") { +            if (it != "[empty]" && it.isNotEmpty()) {                  hasMapping = true              }          }  | 
