summaryrefslogtreecommitdiff
path: root/Source/Android/jni/MainAndroid.cpp
diff options
context:
space:
mode:
authorJMC47 <JMC4789@gmail.com>2022-10-03 16:25:40 -0400
committerGitHub <noreply@github.com>2022-10-03 16:25:40 -0400
commit052c7395fbc0789147703a4c5cc754ae28f8f8bd (patch)
treec6e206df257937e8373aeeb012e29ea74f0d0fc7 /Source/Android/jni/MainAndroid.cpp
parentcb6d476538afe85c25d30e8679b6f15abe5d1760 (diff)
parent51ee05cb35f401c82adf815cbb4f4c3133e7ea84 (diff)
Merge pull request #9624 from JosJuice/input-override
Add new "input override" system for TAS input and Android touch controls
Diffstat (limited to 'Source/Android/jni/MainAndroid.cpp')
-rw-r--r--Source/Android/jni/MainAndroid.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp
index 49bf596571..1e80675d8d 100644
--- a/Source/Android/jni/MainAndroid.cpp
+++ b/Source/Android/jni/MainAndroid.cpp
@@ -302,13 +302,6 @@ JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SetMotionSen
ciface::Android::SetMotionSensorsEnabled(accelerometer_enabled, gyroscope_enabled);
}
-JNIEXPORT double JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetInputRadiusAtAngle(
- JNIEnv*, jclass, int emu_pad_id, int stick, double angle)
-{
- const auto casted_stick = static_cast<ButtonManager::ButtonType>(stick);
- return ButtonManager::GetInputRadiusAtAngle(emu_pad_id, casted_stick, angle);
-}
-
JNIEXPORT jstring JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetVersionString(JNIEnv* env,
jclass)
{