mirror of https://github.com/pret/pokecrystal.git
Fix unused variable warnings
This commit is contained in:
parent
885af5e543
commit
c719ff4f0b
|
@ -162,13 +162,11 @@ void create_tilemap(struct Tilemap* tilemap, struct Graphic* graphic, char* grap
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char* argv[]) {
|
int main(int argc, char* argv[]) {
|
||||||
int opt;
|
|
||||||
char* dimensions_filename;
|
char* dimensions_filename;
|
||||||
char* graphics_filename;
|
char* graphics_filename;
|
||||||
char* outfile = NULL;
|
char* outfile = NULL;
|
||||||
char* mapfile = NULL;
|
char* mapfile = NULL;
|
||||||
FILE* f;
|
FILE* f;
|
||||||
long size;
|
|
||||||
uint8_t bytes[1];
|
uint8_t bytes[1];
|
||||||
int width;
|
int width;
|
||||||
int height;
|
int height;
|
||||||
|
|
Loading…
Reference in New Issue