summary refs log tree commit diff
path: root/src/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/config.h b/src/config.h
index 3443853..8220a78 100644
--- a/src/config.h
+++ b/src/config.h
@@ -7,15 +7,17 @@
 struct Config {
 	int width;
 	int height;
-	float mouse_sensitivity;
-	bool debug;
 	bool vsync;
-	bool blood;
 	bool blur;
+	bool blood;
+
+	bool music;
+
+	float mouse_sensitivity;
+
 	bool menu;
 	bool custom_levels;
-	bool music;
-	bool azerty;
+	bool debug;
 };
 
 #endif // BLACKSHADES_CONFIG_H