From 533ca24079c4eab561c85b266db3b926f82857a6 Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Wed, 24 Jan 2018 14:04:44 -0500 Subject: [PATCH] =?UTF-8?q?Rapha=C3=ABl=20Marinier:=20remove=20more=20unne?= =?UTF-8?q?cessary=20changes=20of=20format...?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... A search of FFmpeg source code shows that the nonstandard %t format occurs nowhere in it. --- src/FFmpeg.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/FFmpeg.cpp b/src/FFmpeg.cpp index 59ed36d5f..4521a95c3 100644 --- a/src/FFmpeg.cpp +++ b/src/FFmpeg.cpp @@ -137,9 +137,6 @@ void av_log_wx_callback(void* ptr, int level, const char* fmt, va_list vl) } wxString frm(fmt,wxConvLibc); -#if defined(__WXMSW__) - frm.Replace(wxT("%t"),wxT("%i"),true); //TODO: on Windows vprintf won't handle %t, and probably some others. Investigate. -#endif printstring.Append(wxString::FormatV(frm,vl)); wxString cpt;