From 448b97a888035765aff28bce7ad0178c4a16b0aa Mon Sep 17 00:00:00 2001 From: William Wilgus Date: Sun, 4 Aug 2019 13:38:38 -0500 Subject: fix recording.c file split time in seconds not minutes FS#13173 Change-Id: Icae45bf21c3470e04e7d99355a09d016d204d574 --- apps/recorder/recording.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c index 0ab5654b10..b67436839c 100644 --- a/apps/recorder/recording.c +++ b/apps/recorder/recording.c @@ -975,7 +975,7 @@ bool recording_screen(bool no_source) int audio_stat = 0; /* status of the audio system */ int last_audio_stat = -1; /* previous status so we can act on changes */ struct viewport vp_list[NB_SCREENS], vp_top[NB_SCREENS]; /* the viewports */ - const unsigned long split_seconds = (unsigned) global_settings.rec_timesplit; + const unsigned long split_seconds = (unsigned) global_settings.rec_timesplit * 60; const unsigned long split_bytes = rec_sizesplit_bytes(); #if CONFIG_CODEC == SWCODEC -- cgit v1.2.3