Browse Source

Prevent animation from scrolling terminal

DricomDragon 5 years ago
parent
commit
313eb38888
1 changed files with 2 additions and 0 deletions
  1. 2 0
      main.cc

+ 2 - 0
main.cc

@@ -319,6 +319,7 @@ class World
 				markOne(tile, DISCOVERED);
 				display();
 				usleep(DEFAULT_ANIMATION_DELAY);
+				cout << "\033[" << h << 'A';
 			}
 
 			if (exitFound)
@@ -326,6 +327,7 @@ class World
 					markOne(tile, TRACE);
 					display();
 					usleep(DEFAULT_ANIMATION_DELAY);
+					cout << "\033[" << h << 'A';
 				}
 		}