From b89cc3b6df0c929c7c9726f256fd0d21910007b9 Mon Sep 17 00:00:00 2001 From: wforums Date: Sat, 6 Sep 2014 13:16:51 +0200 Subject: [PATCH] UCLA TT format change Switched around TEL & TT page number in ttxt format. --- src/telxcc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/telxcc.c b/src/telxcc.c index 6c0c31d4..6ef9f71e 100644 --- a/src/telxcc.c +++ b/src/telxcc.c @@ -370,12 +370,12 @@ void telxcc_dump_prev_page (void) millis_to_date (prev_hide_timestamp, c_temp2); fdprintf(wbout1.fh,"%s|",c_temp2); } - if (ccx_options.transcript_settings.showMode){ - fdprintf(wbout1.fh, "TLT|"); - } if (ccx_options.transcript_settings.showCC){ fdprintf(wbout1.fh, "%.3u|", bcd_page_to_int(tlt_config.page)); } + if (ccx_options.transcript_settings.showMode){ + fdprintf(wbout1.fh, "TLT|"); + } if (wbout1.fh!=-1) fdprintf(wbout1.fh, "%s",page_buffer_prev); fdprintf(wbout1.fh,"%s",encoded_crlf);