Change assets directory

This commit is contained in:
Pòsweg 2020-07-05 12:07:34 +02:00
parent ef90d94569
commit dbd2b2e472
1 changed files with 2 additions and 2 deletions

View File

@ -51,8 +51,8 @@ int main(int argc, char* args[]) {
/* Init of the game */
// Get image file names and their count
char ** imageNames = listFiles("assets2/");
int nfiles = countFiles("assets2/");
char ** imageNames = listFiles("assets/");
int nfiles = countFiles("assets/");
// Allocate space for the images
SDL_Texture **thumbs = (SDL_Texture **) malloc(sizeof(SDL_Texture *) * nfiles);