X-Git-Url: https://lisas.de/git/?p=terminatorX.git;a=blobdiff_plain;f=src%2FtX_global.c;h=489ad6ef7a6a9c52b80ebc43e91709d619d3197d;hp=248a6c98f4b078147e138a6f133a041077023222;hb=9ea36b8e8c046d9baf26366eb26532ba46b01fa1;hpb=ce6247f4ff831ffc0cbd28049b98e50d99fd87cd diff --git a/src/tX_global.c b/src/tX_global.c index 248a6c9..489ad6e 100644 --- a/src/tX_global.c +++ b/src/tX_global.c @@ -154,6 +154,9 @@ void set_global_defaults() { globals.quit_confirm=1; globals.use_realtime=1; globals.auto_assign_midi=0; + + globals.verbose_plugin_loading=0; + globals.force_nonrt_plugins=0; } int load_globals_xml() { @@ -253,6 +256,8 @@ int load_globals_xml() { restore_int("quit_confirm", globals.quit_confirm); restore_int("use_realtime", globals.use_realtime); restore_int("auto_assign_midi", globals.auto_assign_midi); + restore_int("force_nonrt_plugins", globals.force_nonrt_plugins); + restore_int("verbose_plugin_loading", globals.verbose_plugin_loading); #ifdef USE_ALSA_MIDI_IN if (!elementFound && (xmlStrcmp(cur->name, (xmlChar *) "midi_connections")==0)) { @@ -370,6 +375,9 @@ void store_globals() { store_int("quit_confirm", globals.quit_confirm); store_int("use_realtime", globals.use_realtime); store_int("auto_assign_midi", globals.auto_assign_midi); + + store_int("verbose_plugin_loading", globals.verbose_plugin_loading); + store_int("force_nonrt_plugins", globals.force_nonrt_plugins); #ifdef USE_ALSA_MIDI_IN tX_midiin_store_connections(rc, indent);