Parcourir la source

Fix return type of cursor movement

DricomDragon il y a 5 ans
Parent
commit
8ec3a16a39
1 fichiers modifiés avec 1 ajouts et 2 suppressions
  1. 1 2
      main.cc

+ 1 - 2
main.cc

@@ -35,11 +35,10 @@ unsigned int identifyTile(unsigned int y, unsigned int x, unsigned int l) {
 	return y * l + x;
 }
 
-unsigned int moveCursorUp(const unsigned int& h) {
+void moveCursorUp(const unsigned int& h) {
 	cout << "\033[" << h << 'A';
 }
 
-
 class World
 {
 	private: