From 6c657a9579c417395e7fa91f6f120541c69d089b Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Sat, 18 Nov 2023 19:34:26 -0800 Subject: *: apply TIL_MODULE_AUDIO_ONLY where appropriate This changes modules/playit from experimental to "audio only". Several other modules now incorporate the new flag into their excludes to prevent inclusion where inappropriate. --- src/modules/montage/montage.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/modules/montage/montage.c') diff --git a/src/modules/montage/montage.c b/src/modules/montage/montage.c index 7dba5a6..7d20389 100644 --- a/src/modules/montage/montage.c +++ b/src/modules/montage/montage.c @@ -208,7 +208,7 @@ static const char * montage_tiles_setting_override(const char *value) if (strcasecmp(value, "all")) return value; - return til_get_module_names((TIL_MODULE_HERMETIC|TIL_MODULE_EXPERIMENTAL|TIL_MODULE_BUILTIN), exclusions); + return til_get_module_names((TIL_MODULE_HERMETIC|TIL_MODULE_EXPERIMENTAL|TIL_MODULE_BUILTIN|TIL_MODULE_AUDIO_ONLY), exclusions); } @@ -230,7 +230,7 @@ static int montage_tile_module_setup(const til_settings_t *settings, til_setting res_setup, "Tile module name", MONTAGE_DEFAULT_TILE_MODULE, - (TIL_MODULE_EXPERIMENTAL | TIL_MODULE_HERMETIC), + (TIL_MODULE_EXPERIMENTAL | TIL_MODULE_HERMETIC | TIL_MODULE_AUDIO_ONLY), NULL); } -- cgit v1.2.1