Skip to content

Commit e0ee203

Browse files
authored
Merge pull request #149 from rsn8887/master
Fix path_is_absolute on Vita
2 parents 978901d + f4379bc commit e0ee203

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)