diff --git a/.idea/Dicewars-Siedler.iml b/.idea/Dicewars-Siedler.iml
index 4c94235..f08604b 100644
--- a/.idea/Dicewars-Siedler.iml
+++ b/.idea/Dicewars-Siedler.iml
@@ -1,2 +1,2 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/.idea/editor.xml b/.idea/editor.xml
index fef3201..5e7b172 100644
--- a/.idea/editor.xml
+++ b/.idea/editor.xml
@@ -245,5 +245,103 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0996f00..6a54f63 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 4.1)
+cmake_minimum_required(VERSION 3.31)
project(Dicewars_Siedler)
set(CMAKE_CXX_STANDARD 20)
diff --git a/src/engine/renderer/shaders/StaticShader.h b/src/engine/renderer/shaders/StaticShader.h
index 444c51e..912e835 100644
--- a/src/engine/renderer/shaders/StaticShader.h
+++ b/src/engine/renderer/shaders/StaticShader.h
@@ -12,8 +12,8 @@ class StaticShader: public ShaderProgram
public:
StaticShader();
private:
- inline static const std::string VERTEX_FILE = "assets/shaders/fragmentShader.glsl";
- inline static const std::string FRAGMENT_FILE = "assets/shaders/vertexShader.glsl";
+ inline static const std::string VERTEX_FILE = "assets/shaders/vertexShader.glsl";
+ inline static const std::string FRAGMENT_FILE = "assets/shaders/fragmentShader.glsl";
protected:
void bindAttributes() const override;