v0.3.4: slight credits tweaks
This commit is contained in:
committed by
Evan Debenham
parent
9a36529511
commit
1e9661dfd2
@@ -28,7 +28,7 @@ public enum Languages {
|
||||
KOREAN("한국어", "ko", Status.REVIEWED, new String[]{"Flameblast12"}, new String[]{"Ddojin0115", "Eeeei", "lsiebnie", "WondarRabb1t"}),
|
||||
|
||||
//Simplified
|
||||
CHINESE("中文", "zh", Status.UNREVIEWED, new String[]{"Jinkeloid"}, new String[]{"931451545", "HoofBumpBlurryface", "Lyn_0401", "ShatteredFlameBlast", "Tempest102"}),
|
||||
CHINESE("中文", "zh", Status.UNREVIEWED, new String[]{"Jinkeloid"}, new String[]{"931451545", "HoofBumpBlurryface", "Lyn-0401", "ShatteredFlameBlast", "Tempest102"}),
|
||||
//Brazillian
|
||||
PORTUGUESE("português", "pt", Status.UNREVIEWED, new String[]{"Matheus208"}, new String[]{"JST", "Try31"}),
|
||||
|
||||
|
||||
@@ -151,17 +151,17 @@ public class WndLangs extends Window {
|
||||
Window credits = new Window();
|
||||
|
||||
RenderedTextMultiline title = PixelScene.renderMultiline(9);
|
||||
title.text(Messages.titleCase(Messages.get(WndLangs.class, "credits")) , 60);
|
||||
title.text(Messages.titleCase(Messages.get(WndLangs.class, "credits")) , 65);
|
||||
title.hardlight(SHPX_COLOR);
|
||||
title.setPos((60 - title.width())/2, 0);
|
||||
title.setPos((65 - title.width())/2, 0);
|
||||
credits.add(title);
|
||||
|
||||
RenderedTextMultiline text = PixelScene.renderMultiline(6);
|
||||
text.text(creds, 60);
|
||||
text.text(creds, 65);
|
||||
text.setPos(0, title.bottom() + 2);
|
||||
credits.add(text);
|
||||
|
||||
credits.resize(60, (int)text.bottom());
|
||||
credits.resize(65, (int)text.bottom());
|
||||
parent.add(credits);
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user