mirror of
https://github.com/odin-lang/Odin.git
synced 2026-02-12 22:33:36 +00:00
Fix #6165
This commit is contained in:
@@ -6023,6 +6023,12 @@ gb_internal bool determine_path_from_string(BlockingMutex *file_mutex, Ast *node
|
||||
has_windows_drive = true;
|
||||
}
|
||||
}
|
||||
|
||||
for (isize i = 0; i < original_string.len; i++) {
|
||||
if (original_string.text[i] == '\\') {
|
||||
original_string.text[i] = '/';
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user