a few typo fixes

This commit is contained in:
Seil0 2017-04-06 23:20:43 +02:00
parent b94f842cc4
commit c7fefb146a
4 changed files with 6 additions and 6 deletions

Binary file not shown.

View File

@ -143,7 +143,7 @@ public class Main extends Application {
Alert alert = new Alert(AlertType.CONFIRMATION); //new alert with file-chooser
alert.setTitle("cemu_UI");
alert.setHeaderText("cemu installation");
alert.setContentText("pleas select your cemu installation");
alert.setContentText("please select your cemu installation");
Optional<ButtonType> result = alert.showAndWait();
if (result.get() == ButtonType.OK){
@ -158,7 +158,7 @@ public class Main extends Application {
Alert alert2 = new Alert(AlertType.CONFIRMATION); //new alert with file-chooser
alert2.setTitle("cemu_UI");
alert2.setHeaderText("rom directory");
alert2.setContentText("pleas select your rom directory");
alert2.setContentText("please select your rom directory");
Optional<ButtonType> result2 = alert2.showAndWait();
if (result2.get() == ButtonType.OK){

View File

@ -148,8 +148,8 @@ public class MainWindowController {
private String selectedGameTitleID;
private String selectedGameTitle;
private String color;
private String version = "0.1.2";
private String buildNumber = "001";
private String version = "0.1.3";
private String buildNumber = "002";
@SuppressWarnings("unused")
private String versionName = "";
private int xPos = -200;
@ -489,7 +489,7 @@ public class MainWindowController {
saveSettings();
cemuTextField.setText(getCemuPath());
try {
Runtime.getRuntime().exec("java -jar ProjectHomeFlix.jar"); //start again
Runtime.getRuntime().exec("java -jar cemu_UI.jar"); //start again
System.exit(0); //finishes itself
} catch (IOException e) {
System.out.println("es ist ein Fehler aufgetreten");
@ -508,7 +508,7 @@ public class MainWindowController {
saveSettings();
cemuTextField.setText(getCemuPath());
try {
Runtime.getRuntime().exec("java -jar ProjectHomeFlix.jar"); //start again
Runtime.getRuntime().exec("java -jar cemu_UI.jar"); //start again
System.exit(0); //finishes itself
} catch (IOException e) {
System.out.println("es ist ein Fehler aufgetreten");