Quellcode durchsuchen

Fix return type of cursor movement

DricomDragon vor 5 Jahren
Ursprung
Commit
8ec3a16a39
1 geänderte Dateien mit 1 neuen und 2 gelöschten Zeilen
  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: