mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-23 03:02:53 +01:00
Gui: TTY log fix
This commit is contained in:
parent
63a107acbc
commit
b3073bbf1e
@ -255,7 +255,7 @@ void LogFrame::UpdateUI()
|
||||
const auto start = steady_clock::now();
|
||||
|
||||
// Check TTY logs
|
||||
while (const u64 size = std::min<u64>(sizeof(buf), m_tty_file.size() - m_tty_file.pos()))
|
||||
while (const u64 size = std::min<u64>(buf.size(), m_tty_file.size() - m_tty_file.pos()))
|
||||
{
|
||||
const wxString& text = get_utf8(m_tty_file, size);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user