]> git.sesse.net Git - nageru/blobdiff - flags.h
Write 1.4.0 changelog.
[nageru] / flags.h
diff --git a/flags.h b/flags.h
index 7d4abd2e436c9789fd7e33771d8275ef42903d70..be02f388efd5dd5ce6868babf5495a46ff41e31b 100644 (file)
--- a/flags.h
+++ b/flags.h
@@ -9,10 +9,11 @@
 
 struct Flags {
        int num_cards = 2;
-       int num_fake_cards = 0;
        std::string va_display;
+       bool fake_cards_audio = false;
        bool uncompressed_video_to_http = false;
        bool x264_video_to_http = false;
+       std::vector<std::string> theme_dirs { ".", "/usr/local/share/nageru" };
        std::string theme_filename = "theme.lua";
        bool locut_enabled = true;
        bool gain_staging_auto = true;
@@ -35,6 +36,9 @@ struct Flags {
        std::vector<std::string> x264_extra_param;  // In “key[,value]” format.
        bool enable_alsa_output = true;
        std::map<int, int> default_stream_mapping;
+       bool multichannel_mapping_mode = false;  // Implicitly true if input_mapping_filename is nonempty.
+       std::string input_mapping_filename;  // Empty for none.
+       std::string midi_mapping_filename;  // Empty for none.
 };
 extern Flags global_flags;