summaryrefslogtreecommitdiffhomepage
path: root/floormat
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-10-26 19:33:06 +0200
committerStanislaw Halik <sthalik@misaki.pl>2022-10-26 19:33:06 +0200
commit8898bebd8dcb4361b35dde37bdf424d09b498d60 (patch)
treeb934672158ceda6ed42e0c7e63a5bc57318213a4 /floormat
parenteb5097b993286ffe44214ad493db75e1749c8ec9 (diff)
simplify argv handling
Diffstat (limited to 'floormat')
-rw-r--r--floormat/settings.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/floormat/settings.hpp b/floormat/settings.hpp
index 0a526478..5dcdf26e 100644
--- a/floormat/settings.hpp
+++ b/floormat/settings.hpp
@@ -21,15 +21,15 @@ struct fm_settings
Corrade::Containers::String title{"Test"};
Corrade::Containers::String disabled_extensions; // TODO
std::uint8_t msaa_samples = 16;
- fm_tristate vsync = fm_tristate::maybe;
+ bool vsync = true;
fm_gpu_debug gpu_debug = fm_gpu_debug::on;
fm_log_level log_level = fm_log_level::normal;
std::uint8_t resizable : 1 = true,
fullscreen : 1 = false,
fullscreen_desktop : 1 = false,
borderless : 1 = false,
- maximized : 1 = false,
- msaa : 1 = true;
+ maximized : 1 = true,
+ msaa : 1 = false;
};
} // namespace floormat