mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	Merge pull request #4552 from yuzu-emu/revert-4537-tz
Revert "common/time_zone: Simplify GetOsTimeZoneOffset()"
This commit is contained in:
		
						commit
						354811e556
					
				@ -3,9 +3,8 @@
 | 
				
			|||||||
// Refer to the license.txt file included.
 | 
					// Refer to the license.txt file included.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <chrono>
 | 
					#include <chrono>
 | 
				
			||||||
#include <ctime>
 | 
					#include <iomanip>
 | 
				
			||||||
 | 
					#include <sstream>
 | 
				
			||||||
#include <fmt/chrono.h>
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "common/logging/log.h"
 | 
					#include "common/logging/log.h"
 | 
				
			||||||
#include "common/time_zone.h"
 | 
					#include "common/time_zone.h"
 | 
				
			||||||
@ -17,8 +16,13 @@ std::string GetDefaultTimeZone() {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static std::string GetOsTimeZoneOffset() {
 | 
					static std::string GetOsTimeZoneOffset() {
 | 
				
			||||||
    // Get the current timezone offset, e.g. "-400", as a string
 | 
					    const std::time_t t{std::time(nullptr)};
 | 
				
			||||||
    return fmt::format("%z", fmt::localtime(std::time(nullptr)));
 | 
					    const std::tm tm{*std::localtime(&t)};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    std::stringstream ss;
 | 
				
			||||||
 | 
					    ss << std::put_time(&tm, "%z"); // Get the current timezone offset, e.g. "-400", as a string
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    return ss.str();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static int ConvertOsTimeZoneOffsetToInt(const std::string& timezone) {
 | 
					static int ConvertOsTimeZoneOffsetToInt(const std::string& timezone) {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user