mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	Config: auto-select region and language
This commit is contained in:
		@@ -89,7 +89,8 @@ void Config::ReadValues() {
 | 
			
		||||
 | 
			
		||||
    // System
 | 
			
		||||
    Settings::values.is_new_3ds = sdl2_config->GetBoolean("System", "is_new_3ds", false);
 | 
			
		||||
    Settings::values.region_value = sdl2_config->GetInteger("System", "region_value", 1);
 | 
			
		||||
    Settings::values.region_value =
 | 
			
		||||
        sdl2_config->GetInteger("System", "region_value", Settings::REGION_VALUE_AUTO_SELECT);
 | 
			
		||||
 | 
			
		||||
    // Miscellaneous
 | 
			
		||||
    Settings::values.log_filter = sdl2_config->Get("Miscellaneous", "log_filter", "*:Info");
 | 
			
		||||
 
 | 
			
		||||
@@ -101,7 +101,7 @@ use_virtual_sd =
 | 
			
		||||
is_new_3ds =
 | 
			
		||||
 | 
			
		||||
# The system region that Citra will use during emulation
 | 
			
		||||
# 0: Japan, 1: USA (default), 2: Europe, 3: Australia, 4: China, 5: Korea, 6: Taiwan
 | 
			
		||||
# -1: Auto-select (default), 0: Japan, 1: USA, 2: Europe, 3: Australia, 4: China, 5: Korea, 6: Taiwan
 | 
			
		||||
region_value =
 | 
			
		||||
 | 
			
		||||
[Miscellaneous]
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user