diff options
| author | JosJuice <josjuice@gmail.com> | 2019-11-28 18:35:50 +0100 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2019-11-28 18:50:05 +0100 |
| commit | d9c78d54dafe715ca03388d52c04198d181af4dc (patch) | |
| tree | 4019bdfa5eb4e2d5391de7dae76cfb361173dd98 /Source/Android/app/src/main/java | |
| parent | 7e64bdc85f5c8ffdc09a29e9bffd781c2c27fdfb (diff) | |
Android: Use square stick calibration
Fixes https://bugs.dolphin-emu.org/issues/11911 and makes the range of
values when using touch controls correct. Also affects the range of
values for physical controllers in a way that may or may not be
desirable, depending on the controller model. (If there are
undesirable effects, they would be that the range of inputs is too
small, especially diagonally.) Such is our messy Android input system.
Should be an improvement on the whole for physical controllers, though.
Diffstat (limited to 'Source/Android/app/src/main/java')
| -rw-r--r-- | Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/utils/DirectoryInitialization.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/utils/DirectoryInitialization.java b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/utils/DirectoryInitialization.java index 45b3c69155..ce097ec3e1 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/utils/DirectoryInitialization.java +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/utils/DirectoryInitialization.java @@ -35,7 +35,7 @@ public final class DirectoryInitialization "org.dolphinemu.dolphinemu.DIRECTORY_INITIALIZATION"; public static final String EXTRA_STATE = "directoryState"; - private static final int WiimoteNewVersion = 3; // Last changed in PR 8439 + private static final int WiimoteNewVersion = 4; // Last changed in PR 8503 private static volatile DirectoryInitializationState directoryState = null; private static String userPath; private static String internalPath; |
