1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-04-30 12:31:23 +00:00

renamed the variable 'purehepta' to 'nontruncated'

This commit is contained in:
Zeno Rogue
2017-10-30 12:24:41 +01:00
parent 0d2c520298
commit ae5938e1a4
29 changed files with 249 additions and 249 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 || purehepta) {
if(geometry || nontruncated) {
popGame();
if(!(flags & QUICKGEO)) return true;
}
@@ -91,7 +91,7 @@ bool handleKeyTour(int sym, int uni) {
return true;
}
if(sym == SDLK_BACKSPACE) {
if(geometry || purehepta) {
if(geometry || nontruncated) {
popGame();
if(!(flags & QUICKGEO)) return true;
}
@@ -141,7 +141,7 @@ bool handleKeyTour(int sym, int uni) {
}
}
if(geometry || purehepta) {
if(geometry || nontruncated) {
popGame();
presentation(pmGeometryReset);
return true;
@@ -255,7 +255,7 @@ namespace ss {
dialog::display();
keyhandler = [] (int sym, int uni) {
if(uni >= 'a' && uni < 'a' + sssize) {
if(geometry || purehepta) {
if(geometry || nontruncated) {
popGame();
presentation(pmGeometryReset);
}