mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Add current date/time to file path
This commit is contained in:
		
							parent
							
								
									23e969dfdc
								
							
						
					
					
						commit
						a77cd00cbe
					
				
					 1 changed files with 6 additions and 1 deletions
				
			
		|  | @ -9,6 +9,7 @@ | |||
| #include <numeric> | ||||
| #include <thread> | ||||
| #include <fmt/format.h> | ||||
| #include <fmt/time.h> | ||||
| #include "common/file_util.h" | ||||
| #include "core/hw/gpu.h" | ||||
| #include "core/perf_stats.h" | ||||
|  | @ -31,11 +32,15 @@ PerfStats::~PerfStats() { | |||
|     if (!Settings::values.record_frame_times || title_id == 0) { | ||||
|         return; | ||||
|     } | ||||
| 
 | ||||
|     std::time_t t = std::time(nullptr); | ||||
|     std::ostringstream stream; | ||||
|     std::copy(perf_history.begin() + IgnoreFrames, perf_history.begin() + current_index, | ||||
|               std::ostream_iterator<double>(stream, "\n")); | ||||
|     std::string path = FileUtil::GetUserPath(FileUtil::UserPath::LogDir); | ||||
|     std::string filename = fmt::format("{}/{:X}.csv", path, title_id); | ||||
|     // %F Date format expanded is "%Y-%m-%d"
 | ||||
|     std::string filename = | ||||
|         fmt::format("{}/{:%F-%H-%M}_{:016X}.csv", path, *std::localtime(&t), title_id); | ||||
|     FileUtil::IOFile file(filename, "w"); | ||||
|     file.WriteString(stream.str()); | ||||
| } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue