- Backend update from Raze.
This commit is contained in:
parent
169053587c
commit
c0c9f8e15c
9 changed files with 81 additions and 36 deletions
|
|
@ -986,7 +986,7 @@ bool IsAbsPath(const char *name)
|
|||
if (IsSeperator(name[0])) return true;
|
||||
#ifdef _WIN32
|
||||
/* [A-Za-z]: (for Windows) */
|
||||
if (isalpha(name[0]) && name[1] == ':') return true;
|
||||
if (isalpha((uint8_t)name[0]) && name[1] == ':') return true;
|
||||
#endif /* _WIN32 */
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue