Hardcode exts for now - we assume this standalone program will

only be used on Windows/OSX/Linux systems for now
This commit is contained in:
twinaphex 2018-04-10 05:20:19 +02:00
parent c24179dc63
commit 639152e291

View File

@ -36,7 +36,11 @@ int main(int argc, char *argv[])
const char *core_dir = NULL;
const char *input_dir = NULL;
const char *playlist_dir = NULL;
#ifdef _WIN32
const char *exts = "dll";
#else
const char *exts = "so";
#endif
if (argc < 6)
{