diff options
Diffstat (limited to 'src/modules/rtv')
-rw-r--r-- | src/modules/rtv/rtv.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/modules/rtv/rtv.c b/src/modules/rtv/rtv.c index 91da0a5..b166b15 100644 --- a/src/modules/rtv/rtv.c +++ b/src/modules/rtv/rtv.c @@ -184,13 +184,11 @@ static void setup_next_channel(rtv_context_t *ctxt, unsigned ticks) txt_t *caption; settings = randomize_module_setup(ctxt->channel->module); - caption = txt_newf("Title: %s%s%s\nDescription: %s%s%s%s%s", + caption = txt_newf("Title: %s%s%s\nDescription: %s%s%s", ctxt->channel->module->name, ctxt->channel->module->author ? "\nAuthor: " : "", ctxt->channel->module->author ? : "", ctxt->channel->module->description, - ctxt->channel->module->license ? "\nLicense: " : "", - ctxt->channel->module->license ? : "", settings ? "\nSettings: " : "", settings ? settings : ""); |