Removed '+' from the 'About' page.

This commit is contained in:
Deathsbreed 2014-09-22 08:31:29 -05:00
parent 5b577f3405
commit a8303ba13c

View File

@ -88,7 +88,7 @@ public class SpaceShipSim {
aboutItem.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent ae) {
new Window("About", "SpaceShipSim +" + panel.version + "\n" +
new Window("About", "SpaceShipSim " + panel.version + "\n" +
"Copyright (C) 2014 Nicolás A. Ortega\n" +
"Contact: nicolas.ortega.froysa@gmail.com\n" +
"Source-code: https://github.com/Deathsbreed/SpaceShipSim\n" +
@ -116,4 +116,4 @@ public class SpaceShipSim {
}
public static void main(String[] args) { new SpaceShipSim(); }
}
}