From 4438163da194fc3260b4bb67ff430827e8925706 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Sun, 7 Aug 2016 14:39:29 +0300 Subject: [PATCH] Gui log bugfix --- rpcs3/Gui/ConLogFrame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Gui/ConLogFrame.cpp b/rpcs3/Gui/ConLogFrame.cpp index 7cef833cfe..df10da9ec4 100644 --- a/rpcs3/Gui/ConLogFrame.cpp +++ b/rpcs3/Gui/ConLogFrame.cpp @@ -73,7 +73,7 @@ struct gui_listener : logs::listener _new->msg += text; _new->msg += '\n'; - last = last->next = _new; + last.exchange(_new)->next = _new; } }