From b3fbada10e2fe3e2ad4bce0eae92cce80a618061 Mon Sep 17 00:00:00 2001 From: Eladash Date: Sun, 31 Jan 2021 07:11:36 +0200 Subject: [PATCH] Fix potential crash of progress dialog --- rpcs3/Emu/System.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/System.cpp b/rpcs3/Emu/System.cpp index 3bbce299e3..6cff0c6da0 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -78,7 +78,7 @@ std::array, 16> g_tty_input; std::mutex g_tty_mutex; // Progress display server synchronization variables -atomic_t g_progr{nullptr}; +atomic_t g_progr{""}; atomic_t g_progr_ftotal{0}; atomic_t g_progr_fdone{0}; atomic_t g_progr_ptotal{0};