Update dependencies and fix whitespace errors

- replace tabs with spaces
- remove trailing whitespace
This commit is contained in:
Albrecht Schlosser
2023-02-02 17:03:09 +01:00
parent fb00fb3d66
commit 4e75549e7b
16 changed files with 488 additions and 78 deletions

View File

@@ -196,7 +196,7 @@ bool openDirectory(const char *dir, char *flags) {
if (!p) continue;
if (*(p+4)) continue; // is no extension!
snprintf(buf, sizeof(buf), "%s/%s", dir, name);
if (strstr(name, "debug")) // hack: when name contains 'debug' open single frames
if (strstr(name, "debug")) // hack: when name contains 'debug' open single frames
strcat(flags, "d");
if (openFile(buf, flags, cnt == 0))
cnt++;