diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2023-11-18 19:34:26 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2023-11-18 19:34:26 -0800 |
commit | 6c657a9579c417395e7fa91f6f120541c69d089b (patch) | |
tree | 7aca2280dbf889264dbf9eff697a7ea12470c637 /src/modules/playit | |
parent | 3008ec783740e64d9a4b900e870ae21282a20ce2 (diff) |
*: 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.
Diffstat (limited to 'src/modules/playit')
-rw-r--r-- | src/modules/playit/playit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/playit/playit.c b/src/modules/playit/playit.c index 191bd41..e70a631 100644 --- a/src/modules/playit/playit.c +++ b/src/modules/playit/playit.c @@ -144,7 +144,7 @@ til_module_t playit_module = { .name = "playit", .description = ".IT tracked music file player", .author = "Vito Caputo <vcaputo@pengaru.com>", - .flags = TIL_MODULE_EXPERIMENTAL, + .flags = TIL_MODULE_AUDIO_ONLY, }; |