From dbd2b2e472ca677630f26f0597059a0569c9dd08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=B2sweg?= Date: Sun, 5 Jul 2020 12:07:34 +0200 Subject: [PATCH] Change assets directory --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index a782020..91b6121 100644 --- a/src/main.c +++ b/src/main.c @@ -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);