1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-02 03:50:36 +00:00

Merge pull request #437 from a740g/main

This commit is contained in:
Samuel Gomes 2024-01-26 13:07:52 +05:30 committed by GitHub
commit 8918ab8268
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -792,6 +792,9 @@ void sub_files(qbs *str, int32_t passed) {
} else {
std::string d;
filepath_split(fileSpec, d, pathName);
if (d.empty())
d = "./"; // default to the current directory if one is not specified
directory = FS_GetFQN(d.c_str());
}
} else {