Prechádzať zdrojové kódy

Fix return type of cursor movement

DricomDragon 5 rokov pred
rodič
commit
bf80c32e00
1 zmenil súbory, kde vykonal 1 pridanie a 2 odobranie
  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: