diff --git a/Rules.make.system b/Rules.make.system index 04d59c3..3f991cf 100644 --- a/Rules.make.system +++ b/Rules.make.system @@ -1,4 +1,4 @@ -VERSION := \"0.7.3\" +VERSION := \"0.7.4\" DESTDIR=/usr/local BIN=$(DESTDIR)/bin diff --git a/src/sdl-instead/game.c b/src/sdl-instead/game.c index 74df786..64bdeab 100644 --- a/src/sdl-instead/game.c +++ b/src/sdl-instead/game.c @@ -609,8 +609,8 @@ int games_lookup(void) if (!d) return -1; while ((de = readdir(d))) { - if (de->d_type != DT_DIR) - continue; + /*if (de->d_type != DT_DIR) + continue;*/ if (!is_game(de->d_name)) continue; n ++; @@ -620,8 +620,8 @@ int games_lookup(void) return 0; games = malloc(sizeof(struct game) * n); while ((de = readdir(d)) && games_nr < n) { - if (de->d_type != DT_DIR) - continue; + /*if (de->d_type != DT_DIR) + continue;*/ if (!is_game(de->d_name)) continue; p = getpath(GAMES_PATH, de->d_name);