move values more to the right in sb overlay

This commit is contained in:
yugecin 2016-12-11 13:27:29 +01:00
parent f0c51084d1
commit 3054071bd6

View File

@ -143,7 +143,7 @@ public class SBOverlay implements OptionsOverlay.Parent {
for (Object o : optionsMap[index].entrySet()) {
Map.Entry<Options.GameOption, String> option = (Map.Entry<Options.GameOption, String>) o;
Fonts.SMALL.drawString(10, 50 + i * lh, option.getKey().getName(), Color.cyan);
Fonts.SMALL.drawString(250, 50 + i * lh, option.getKey().getValueString(), Color.cyan);
Fonts.SMALL.drawString(width / 5, 50 + i * lh, option.getKey().getValueString(), Color.cyan);
g.fillRect(0, 50 + i * lh + lh / 4, 10, 10);
i++;
}