mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 17:58:37 +12:00
add system_info.h (#2985)
add system info to log add SSSE3 Error message to main_window
This commit is contained in:
parent
6597eb27c7
commit
aed9b31294
5 changed files with 102 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue