mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-19 02:36:27 +01:00
[Android-overlay] Disable Wiimote configuration until it is wired up.
This commit is contained in:
parent
f6e89356c7
commit
00a25cdaf5
@ -446,6 +446,7 @@
|
|||||||
</PreferenceScreen>
|
</PreferenceScreen>
|
||||||
|
|
||||||
<!-- Wiimote controller bindings -->
|
<!-- Wiimote controller bindings -->
|
||||||
|
<!--
|
||||||
<PreferenceScreen
|
<PreferenceScreen
|
||||||
android:key="wiimote_bindings"
|
android:key="wiimote_bindings"
|
||||||
android:title="@string/wiimote_bindings">
|
android:title="@string/wiimote_bindings">
|
||||||
@ -1042,5 +1043,5 @@
|
|||||||
android:key="WiimoteShakeZ_4"
|
android:key="WiimoteShakeZ_4"
|
||||||
android:title="@string/shake_z"/>
|
android:title="@string/shake_z"/>
|
||||||
</PreferenceScreen>
|
</PreferenceScreen>
|
||||||
</PreferenceScreen>
|
</PreferenceScreen> -->
|
||||||
</PreferenceScreen>
|
</PreferenceScreen>
|
@ -6,18 +6,17 @@
|
|||||||
|
|
||||||
package org.dolphinemu.dolphinemu.settings.input;
|
package org.dolphinemu.dolphinemu.settings.input;
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
import android.app.Fragment;
|
import android.app.Fragment;
|
||||||
import android.os.Build;
|
import android.os.Build;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.preference.Preference;
|
import android.preference.Preference;
|
||||||
import android.preference.PreferenceFragment;
|
import android.preference.PreferenceFragment;
|
||||||
import android.view.InputDevice;
|
import android.view.InputDevice;
|
||||||
|
|
||||||
import org.dolphinemu.dolphinemu.NativeLibrary;
|
import org.dolphinemu.dolphinemu.NativeLibrary;
|
||||||
import org.dolphinemu.dolphinemu.R;
|
import org.dolphinemu.dolphinemu.R;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The {@link Fragment} responsible for implementing the functionality
|
* The {@link Fragment} responsible for implementing the functionality
|
||||||
* within the input control mapping config.
|
* within the input control mapping config.
|
||||||
@ -64,12 +63,12 @@ public final class InputConfigFragment extends PreferenceFragment
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Loop through the keys for the Wiimote
|
// Loop through the keys for the Wiimote
|
||||||
for (String key : wiimoteKeys)
|
/*for (String key : wiimoteKeys)
|
||||||
{
|
{
|
||||||
final String binding = NativeLibrary.GetConfig("Dolphin.ini", "Android", key+"_"+i, "None");
|
final String binding = NativeLibrary.GetConfig("Dolphin.ini", "Android", key+"_"+i, "None");
|
||||||
final Preference pref = findPreference(key+"_"+i);
|
final Preference pref = findPreference(key+"_"+i);
|
||||||
pref.setSummary(binding);
|
pref.setSummary(binding);
|
||||||
}
|
}*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user