Skip to content

Commit f4379bc

Browse files
committed
Fix path_is_absolute on Vita
1 parent 978901d commit f4379bc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

file/file_path.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ bool path_is_absolute(const char *path)
611611
|| strstr(path, ":\\")
612612
|| strstr(path, ":\\\\"))
613613
return true;
614-
#elif defined(__wiiu__)
614+
#elif defined(__wiiu__) || defined(VITA)
615615
if (strstr(path, ":/"))
616616
return true;
617617
#endif

0 commit comments

Comments
 (0)