1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-11 12:47:39 +00:00

changed chamfered to bitruncated

This commit is contained in:
Zeno Rogue
2018-01-06 22:34:03 +01:00
parent 1427147fbc
commit 5bf6d54c7d
40 changed files with 357 additions and 357 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 || nonchamfered) {
if(geometry || nonbitrunc) {
popGame();
if(!(flags & QUICKGEO)) return true;
}
@@ -91,7 +91,7 @@ bool handleKeyTour(int sym, int uni) {
return true;
}
if(sym == SDLK_BACKSPACE) {
if(geometry || nonchamfered) {
if(geometry || nonbitrunc) {
popGame();
if(!(flags & QUICKGEO)) return true;
}
@@ -139,7 +139,7 @@ bool handleKeyTour(int sym, int uni) {
}
}
if(geometry || nonchamfered) {
if(geometry || nonbitrunc) {
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 || nonchamfered) {
if(geometry || nonbitrunc) {
popGame();
presentation(pmGeometryReset);
}