diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-26 21:05:19 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-26 21:07:46 +0200 |
commit | 15874e375334a2e5e4cd44f438ca180d22deb02a (patch) | |
tree | 0dcfe67901faec071a36668f336ec5eb178714ab | |
parent | 0ab3e14ff05969f91ce24867a6ada45e53f6ecf5 (diff) |
argv krap
-rw-r--r-- | editor/app.cpp | 1 | ||||
-rw-r--r-- | floormat/settings.hpp | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/editor/app.cpp b/editor/app.cpp index 8f69f701..4cb1cb4a 100644 --- a/editor/app.cpp +++ b/editor/app.cpp @@ -32,7 +32,6 @@ int app::exec() static const char* const true_values[] = { "1", "true", "yes", "y", "Y", "on", "ON", "enable", "enabled", }; static const char* const false_values[] = { "0", "false", "no", "n", "N", "off", "OFF", "disable", "disabled", }; -static const char* const maybe_values[] = { "maybe", "m", "M", "default", }; template<typename T, typename U> static inline bool find_arg(const T& list, const U& value) { diff --git a/floormat/settings.hpp b/floormat/settings.hpp index 5dcdf26e..39b5b137 100644 --- a/floormat/settings.hpp +++ b/floormat/settings.hpp @@ -28,7 +28,7 @@ struct fm_settings fullscreen : 1 = false, fullscreen_desktop : 1 = false, borderless : 1 = false, - maximized : 1 = true, + maximized : 1 = false, msaa : 1 = false; }; |