diff options
Diffstat (limited to '')
-rw-r--r-- | src/options.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/options.c b/src/options.c index dd31203b6..0f281bc16 100644 --- a/src/options.c +++ b/src/options.c @@ -183,7 +183,7 @@ handle_option(int c, char *arg) case 'C': /* --no-colors */ options.enable_colors = FALSE; break; - case 'm': /* --mouse */ + case 'm': /* --mouse */ options.enable_mouse = TRUE; break; case 'M': /* --no-mouse */ @@ -368,7 +368,8 @@ options_init( void ) options.crossfade_time = DEFAULT_CROSSFADE_TIME; options.seek_time = 1; options.screen_list = g_strsplit_set(DEFAULT_SCREEN_LIST, " ", 0); - + options.timedisplay_type = DEFAULT_TIMEDISPLAY_TYPE; + return &options; } |