Pushed small win fix.

This commit is contained in:
Christoffer Lerno
2021-10-19 23:12:25 +02:00
parent f48661d35e
commit af34eec61d

View File

@@ -70,7 +70,7 @@ char *strip_drive_prefix(char *path)
static inline bool is_path_separator(char c)
{
#if PLATFORM_WINDOWS
return c == '/' || c == '\';
return c == '/' || c == '\\';
#else
return c == '/';
#endif