mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2025-12-12 17:12:40 +01:00
DroidFish: Changed default value for tablebase root probe setting to true.
This commit is contained in:
@@ -390,7 +390,7 @@
|
|||||||
android:key="tbRootProbe"
|
android:key="tbRootProbe"
|
||||||
android:title="@string/prefs_tbRootProbe_title"
|
android:title="@string/prefs_tbRootProbe_title"
|
||||||
android:summary="@string/prefs_tbRootProbe_summary"
|
android:summary="@string/prefs_tbRootProbe_summary"
|
||||||
android:defaultValue="false">
|
android:defaultValue="true">
|
||||||
</CheckBoxPreference>
|
</CheckBoxPreference>
|
||||||
<CheckBoxPreference
|
<CheckBoxPreference
|
||||||
android:key="tbEngineProbe"
|
android:key="tbEngineProbe"
|
||||||
|
|||||||
@@ -621,7 +621,7 @@ public class DroidFish extends Activity implements GUIInterface {
|
|||||||
|
|
||||||
egtbOptions.hints = settings.getBoolean("tbHints", false);
|
egtbOptions.hints = settings.getBoolean("tbHints", false);
|
||||||
egtbOptions.hintsEdit = settings.getBoolean("tbHintsEdit", false);
|
egtbOptions.hintsEdit = settings.getBoolean("tbHintsEdit", false);
|
||||||
egtbOptions.rootProbe = settings.getBoolean("tbRootProbe", false);
|
egtbOptions.rootProbe = settings.getBoolean("tbRootProbe", true);
|
||||||
egtbOptions.engineProbe = settings.getBoolean("tbEngineProbe", true);
|
egtbOptions.engineProbe = settings.getBoolean("tbEngineProbe", true);
|
||||||
String gtbPath = settings.getString("gtbPath", "");
|
String gtbPath = settings.getString("gtbPath", "");
|
||||||
if (gtbPath.length() == 0) {
|
if (gtbPath.length() == 0) {
|
||||||
|
|||||||
Reference in New Issue
Block a user