From 383fe554c9d5056a3a5194cb4360dfaf3f790cf3 Mon Sep 17 00:00:00 2001 From: Akash Mozumdar Date: Tue, 28 Aug 2018 17:46:53 -0400 Subject: [PATCH] bugfix --- GUI/host/textthread.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/GUI/host/textthread.cc b/GUI/host/textthread.cc index f7bad29..6fd0023 100644 --- a/GUI/host/textthread.cc +++ b/GUI/host/textthread.cc @@ -27,7 +27,6 @@ void TextThread::Flush() { LOCK(ttMutex); if (buffer.size() < 400 && (timestamp - GetTickCount() < 250 || buffer.size() == 0)) return; // TODO: let user change delay before sentence is flushed - std::wstring sentence; if (status & USING_UNICODE) { sentence = std::wstring((wchar_t*)buffer.data(), buffer.size() / 2);