From a9974a7533385e81e7381bd82e8320566bd9326e Mon Sep 17 00:00:00 2001
From: samuel <samnej@uni-bremen.de>
Date: Sun, 28 Jun 2020 18:41:12 +0200
Subject: [PATCH] unnecessary changes

---
 .../galaxytruckerreloaded/View/UI/Options/OptionUI.java    | 4 ++--
 .../galaxytruckerreloaded/View/UI/Options/VideoUI.java     | 7 ++++---
 2 files changed, 6 insertions(+), 5 deletions(-)

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 3edf458d..9cff0d79 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 a01db4c3..4cbacd27 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);
-- 
GitLab