Adds cpu to log.
Adds [DO NOT USE] to D3D12 selection.
This commit is contained in:
RipleyTom 2017-08-13 17:32:48 +02:00 committed by Ivan
parent a909bd6edd
commit 80fee5ac1e
3 changed files with 12 additions and 2 deletions

View file

@ -3,6 +3,7 @@
#include "StrFmt.h"
#include "sema.h"
#include "Utilities/sysinfo.h"
#include "rpcs3_version.h"
#include <string>
#include <unordered_map>
@ -64,7 +65,7 @@ namespace logs
: file_writer(name)
, listener()
{
const std::string& start = fmt::format("\xEF\xBB\xBF" "RPCS3 v%s\n", rpcs3::version.to_string());
const std::string& start = fmt::format("\xEF\xBB\xBF" "RPCS3 v%s\n%s\n", rpcs3::version.to_string(), utils::get_system_info());
file_writer::log(start.data(), start.size());
}