DroidFish: Changed default value for tablebase root probe setting to true.

This commit is contained in:
Peter Osterlund
2012-01-22 12:48:11 +00:00
parent 7caebc66d5
commit 4e86b110d3
2 changed files with 2 additions and 2 deletions

View File

@@ -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"

View File

@@ -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) {