Selaa lähdekoodia

Fixed forgetting a type

Florian DORMONT 10 vuotta sitten
vanhempi
commit
aa07029c39
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      include/Tileset.h

+ 1 - 1
include/Tileset.h

@@ -14,7 +14,7 @@ namespace WalrusRPG
 
       public:
         Tileset(char *sheet, unsigned sheet_width, unsigned sheet_height, unsigned tile_width, unsigned tile_heihgt);
-        render_tile(unsigned int index, unsigned x, unsigned y) const;
+        void render_tile(unsigned int index, unsigned x, unsigned y) const;
     };
 }