mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	Added Host CPU and OS to log
This commit is contained in:
		
							parent
							
								
									377abfa3e6
								
							
						
					
					
						commit
						63c31af8ee
					
				
					 1 changed files with 8 additions and 0 deletions
				
			
		|  | @ -11,6 +11,7 @@ | ||||||
| #include <QFileDialog> | #include <QFileDialog> | ||||||
| #include <QFutureWatcher> | #include <QFutureWatcher> | ||||||
| #include <QMessageBox> | #include <QMessageBox> | ||||||
|  | #include <QSysInfo> | ||||||
| #include <QtConcurrent/QtConcurrentRun> | #include <QtConcurrent/QtConcurrentRun> | ||||||
| #include <QtGui> | #include <QtGui> | ||||||
| #include <QtWidgets> | #include <QtWidgets> | ||||||
|  | @ -61,6 +62,9 @@ | ||||||
| #include "common/microprofile.h" | #include "common/microprofile.h" | ||||||
| #include "common/scm_rev.h" | #include "common/scm_rev.h" | ||||||
| #include "common/scope_exit.h" | #include "common/scope_exit.h" | ||||||
|  | #ifdef ARCHITECTURE_x86_64 | ||||||
|  | #include "common/x64/cpu_detect.h" | ||||||
|  | #endif | ||||||
| #include "core/core.h" | #include "core/core.h" | ||||||
| #include "core/dumping/backend.h" | #include "core/dumping/backend.h" | ||||||
| #include "core/file_sys/archive_extsavedata.h" | #include "core/file_sys/archive_extsavedata.h" | ||||||
|  | @ -169,6 +173,10 @@ GMainWindow::GMainWindow() : config(new Config()), emu_thread(nullptr) { | ||||||
| 
 | 
 | ||||||
|     LOG_INFO(Frontend, "Citra Version: {} | {}-{}", Common::g_build_fullname, Common::g_scm_branch, |     LOG_INFO(Frontend, "Citra Version: {} | {}-{}", Common::g_build_fullname, Common::g_scm_branch, | ||||||
|              Common::g_scm_desc); |              Common::g_scm_desc); | ||||||
|  | #ifdef ARCHITECTURE_x86_64 | ||||||
|  |     LOG_INFO(Frontend, "Host CPU: {}", Common::GetCPUCaps().cpu_string); | ||||||
|  | #endif | ||||||
|  |     LOG_INFO(Frontend, "Host OS: {}", QSysInfo::prettyProductName().toStdString()); | ||||||
|     UpdateWindowTitle(); |     UpdateWindowTitle(); | ||||||
| 
 | 
 | ||||||
|     show(); |     show(); | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue