1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-11 20:57:41 +00:00

renamed 'truncated' to 'chamfered'

This commit is contained in:
Zeno Rogue
2018-01-04 18:39:04 +01:00
parent f3cf1e06bf
commit 495dbba809
40 changed files with 351 additions and 351 deletions

View File

@@ -79,7 +79,7 @@ bool handleKeyTour(int sym, int uni) {
int flags = slides[currentslide].flags;
if((sym == SDLK_RETURN || sym == SDLK_KP_ENTER) && (!inhelp || (flags & QUICKSKIP))) {
popScreenAll();
if(geometry || nontruncated) {
if(geometry || nonchamfered) {
popGame();
if(!(flags & QUICKGEO)) return true;
}
@@ -91,7 +91,7 @@ bool handleKeyTour(int sym, int uni) {
return true;
}
if(sym == SDLK_BACKSPACE) {
if(geometry || nontruncated) {
if(geometry || nonchamfered) {
popGame();
if(!(flags & QUICKGEO)) return true;
}
@@ -139,7 +139,7 @@ bool handleKeyTour(int sym, int uni) {
}
}
if(geometry || nontruncated) {
if(geometry || nonchamfered) {
popGame();
presentation(pmGeometryReset);
return true;
@@ -253,7 +253,7 @@ namespace ss {
dialog::display();
keyhandler = [] (int sym, int uni) {
if(uni >= 'a' && uni < 'a' + sssize) {
if(geometry || nontruncated) {
if(geometry || nonchamfered) {
popGame();
presentation(pmGeometryReset);
}