From d0c4f1da8b45c85dca587f6bb1f6f76a82eede8e Mon Sep 17 00:00:00 2001 From: Scott Duensing Date: Sun, 26 Nov 2023 20:03:47 -0600 Subject: [PATCH] Adjusting what files are allowed in game archives. --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 3d19f91e5..583517413 100644 --- a/src/main.c +++ b/src/main.c @@ -873,7 +873,7 @@ void unpackGames(void) { char *toplevel = NULL; int packageType = -1; char *types[] = { "Game", "Tool", "Patch", 0 }; - char *badFilenames[] = { "Framework.singe", 0 }; + char *badFilenames[] = { "controls.dat", "Framework.singe", 0 }; char *badExtensions[] = { "exe", "sh", "bat", "cmd", "index", 0 }; // Games cannot include forbidden extensions, Singe binaries, multiple folders, etc.