diff --git a/core/src/com/galaxytrucker/galaxytruckerreloaded/View/UI/Options/OptionUI.java b/core/src/com/galaxytrucker/galaxytruckerreloaded/View/UI/Options/OptionUI.java index 3edf458d5e82a47f0a8cfd1837af93c36b6f1d92..9cff0d799e3c0d6414a89f104c87570304a72b79 100644 --- a/core/src/com/galaxytrucker/galaxytruckerreloaded/View/UI/Options/OptionUI.java +++ b/core/src/com/galaxytrucker/galaxytruckerreloaded/View/UI/Options/OptionUI.java @@ -49,8 +49,8 @@ public class OptionUI { x = main.WIDTH/2 - optionsBackgroundTexture.getWidth()/2; y = main.HEIGHT/2 - optionsBackgroundTexture.getHeight()/2; - videoButton = new VideoButton(x+220, y+270, 128, 24, this); - optionenBackButton = new OptionenBackButton(x+220, y+220, 128, 24, this, pauseMenuUI); + optionenBackButton = new OptionenBackButton(x+220, y+100, 128, 24, this, pauseMenuUI); + videoButton = new VideoButton(x+220, y+220, 128, 24, this); generalButton = new GeneralButton(x+220, y+320, 128, 24, this); stage.addActor(optionenBackButton); diff --git a/core/src/com/galaxytrucker/galaxytruckerreloaded/View/UI/Options/VideoUI.java b/core/src/com/galaxytrucker/galaxytruckerreloaded/View/UI/Options/VideoUI.java index a01db4c3648d7f9fd8fa423817d157e912c3f9b3..4cbacd277aeb5cd5ea96b46ad672b5c38bfbdaba 100644 --- a/core/src/com/galaxytrucker/galaxytruckerreloaded/View/UI/Options/VideoUI.java +++ b/core/src/com/galaxytrucker/galaxytruckerreloaded/View/UI/Options/VideoUI.java @@ -61,9 +61,10 @@ public class VideoUI { x = main.WIDTH / 2 - backgroundTexture.getWidth() / 2; y = main.HEIGHT / 2 - backgroundTexture.getHeight() / 2; - fullscreenEnableButton = new FullscreenEnableButton(x + 220-64, y + 320, 128, 24, main); - windowedButton = new WindowedButton(x + 220+64, y + 370, 128, 24, main); - backButton = new BackButton(x + 220, y + 270, 128, 24, optionUI, this); + + backButton = new BackButton(x + 220, y + 100, 128, 24, optionUI, this); + windowedButton = new WindowedButton(x + 220, y + 220, 128, 24, main); + fullscreenEnableButton = new FullscreenEnableButton(x + 220, y + 320, 128, 24, main); stage.addActor(backButton); stage.addActor(windowedButton);