removed MAIN*CHROOT from the sample app code

This commit is contained in:
2020-09-14 17:49:29 +00:00
parent a3aba8bf44
commit d97cb915c5
3 changed files with 4 additions and 18 deletions

View File

@ -151,7 +151,8 @@ int qse_mbsntonwad (const qse_mchar_t* str, qse_size_t len, qse_nwad_t* nwad)
if (p >= end) return -1;
if ((*p == '@' && len >= 2) || *p == '/') // with @, you can specify a relative path
// with @, you can specify a relative path as well as an absolute path
if ((*p == '@' && len >= 2) || *p == '/')
{
/* the string begins with @. it's a local name excluding @.
* if it begins with /, it's also a local name */