DroidFish: Restored space between engine name and engine strength in the title bar.

This commit is contained in:
Peter Osterlund 2012-01-15 00:52:11 +00:00
parent 43224e4ee7
commit ff40f9adc2

View File

@ -652,7 +652,7 @@ public class DroidFish extends Activity implements GUIInterface {
R.string.cuckoochess_engine : R.string.cuckoochess_engine :
R.string.stockfish_engine); R.string.stockfish_engine);
if (strength < 1000) { if (strength < 1000) {
titleText.setText(String.format("%s:%d%%", eName, strength / 10)); titleText.setText(String.format("%s: %d%%", eName, strength / 10));
} else { } else {
titleText.setText(eName); titleText.setText(eName);
} }