add system_info.h (#2985)

add system info to log
add SSSE3 Error message to main_window
This commit is contained in:
Megamouse 2017-07-16 16:36:38 +02:00 committed by Ivan
parent 6597eb27c7
commit aed9b31294
5 changed files with 102 additions and 1 deletions

View file

@ -2,6 +2,7 @@
#include <stdafx.h>
#include "rpcs3_version.h"
#include "system_info.h"
#include <QMenu>
#include <QActionGroup>
@ -39,7 +40,7 @@ struct gui_listener : logs::listener
read = new packet;
last = new packet;
read->next = last.load();
last->msg = fmt::format("RPCS3 v%s\n", rpcs3::version.to_string());
last->msg = fmt::format("RPCS3 v%s\n%s\n", rpcs3::version.to_string(), System_Info::getCPU().first);
// Self-registration
logs::listener::add(this);