mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	Remove magic number
This commit is contained in:
		
							parent
							
								
									fb16700fe5
								
							
						
					
					
						commit
						17ba67c8c9
					
				
					 1 changed files with 3 additions and 2 deletions
				
			
		|  | @ -53,7 +53,8 @@ SMDH::GameRegion SMDH::GetRegion() const { | ||||||
|         return GameRegion::RegionFree; |         return GameRegion::RegionFree; | ||||||
|     } |     } | ||||||
|      |      | ||||||
|     if (region_lockout == 0x00000050) { |     constexpr u32 taiwan_and_china = (1 << GameRegion::Taiwan) & (1 << GameRegion::China); | ||||||
|  |     if (region_lockout == taiwan_and_china) { | ||||||
|         return GameRegion::Taiwan; |         return GameRegion::Taiwan; | ||||||
|     } // hack to fix TWN games that support CHN consoles
 |     } // hack to fix TWN games that support CHN consoles
 | ||||||
|      |      | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue