mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-23 21:07:17 +00:00
the game now uses the word 'pure' for non-bitruncated geometries
This commit is contained in:
parent
70cd47e3a1
commit
c263fdb7f2
@ -615,11 +615,11 @@ namespace hr { namespace gp {
|
||||
else if(DUAL)
|
||||
return XLAT("dual");
|
||||
else if(PURE)
|
||||
return XLAT("OFF");
|
||||
return XLAT("pure");
|
||||
else if(BITRUNCATED)
|
||||
return XLAT("bitruncated");
|
||||
else if(param == loc(1, 0))
|
||||
return XLAT("OFF");
|
||||
return XLAT("pure");
|
||||
else if(param == loc(1, 1) && S3 == 3)
|
||||
return XLAT("bitruncated");
|
||||
else if(param == loc(1, 1) && S3 == 4)
|
||||
@ -686,7 +686,7 @@ namespace hr { namespace gp {
|
||||
}
|
||||
#endif
|
||||
if(min_quality == 0 && min_quality_chess == 0) {
|
||||
dialog::addBoolItem(XLAT("OFF"), param == loc(1,0) && !IRREGULAR, 'a');
|
||||
dialog::addBoolItem(XLAT("pure"), param == loc(1,0) && !IRREGULAR, 'a');
|
||||
dialog::lastItem().value = "GP(1,0)";
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user