mirror of
				https://github.com/zenorogue/hyperrogue.git
				synced 2025-10-31 05:52:59 +00:00 
			
		
		
		
	fixed the bug in chamfered/expanded naming
This commit is contained in:
		| @@ -638,8 +638,8 @@ namespace hr { namespace gp { | |||||||
|       return XLAT("OFF"); |       return XLAT("OFF"); | ||||||
|     else if(param == loc(1, 1) && S3 == 3) |     else if(param == loc(1, 1) && S3 == 3) | ||||||
|       return XLAT("bitruncated"); |       return XLAT("bitruncated"); | ||||||
|     else if(param == loc(2, 0) && S3 == 3) |     else if(param == loc(2, 0)) | ||||||
|       return XLAT("chamfered"); |       return S3 == 3 ? XLAT("chamfered") : XLAT("expanded"); | ||||||
|     else if(param == loc(3, 0) && S3 == 3) |     else if(param == loc(3, 0) && S3 == 3) | ||||||
|       return XLAT("2x bitruncated"); |       return XLAT("2x bitruncated"); | ||||||
|     else { |     else { | ||||||
| @@ -711,7 +711,7 @@ namespace hr { namespace gp { | |||||||
|       } |       } | ||||||
|  |  | ||||||
|     if(show_nonthree) { |     if(show_nonthree) { | ||||||
|       dialog::addBoolItem(XLAT(S3 == 3 ? "expanded" : "chamfered"), param == loc(2,0), 'c'); |       dialog::addBoolItem(XLAT(S3 == 3 ? "chamfered" : "expanded"), param == loc(2,0), 'c'); | ||||||
|       dialog::lastItem().value = "GP(2,0)"; |       dialog::lastItem().value = "GP(2,0)"; | ||||||
|       } |       } | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Zeno Rogue
					Zeno Rogue