summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/rtv/rtv.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/modules/rtv/rtv.c b/src/modules/rtv/rtv.c
index 215f5d2..d0ec618 100644
--- a/src/modules/rtv/rtv.c
+++ b/src/modules/rtv/rtv.c
@@ -34,7 +34,7 @@ typedef struct rtv_context_t {
size_t n_modules;
time_t next_switch, next_hide_caption;
- const rototiller_module_t *module;
+ const rototiller_module_t *module, *last_module;
void *module_ctxt;
txt_t *caption;
@@ -76,13 +76,14 @@ static void setup_next_module(rtv_context_t *ctxt)
}
if (ctxt->module != ctxt->snow_module) {
+ ctxt->last_module = ctxt->module;
ctxt->module = ctxt->snow_module;
ctxt->next_switch = time(NULL) + RTV_SNOW_DURATION_SECS;
} else {
do {
i = rand() % ctxt->n_modules;
} while (ctxt->modules[i] == &rtv_module ||
- ctxt->modules[i] == ctxt->module ||
+ ctxt->modules[i] == ctxt->last_module ||
ctxt->modules[i] == ctxt->snow_module);
ctxt->module = ctxt->modules[i];
© All Rights Reserved