mirror of
https://github.com/SSimco/Cemu.git
synced 2024-11-23 13:29:38 +00:00
Fix typos in fs wrappers
* Fix typos in fs wrappers --------- Co-authored-by: SSimco <37044560+SSimco@users.noreply.github.com>
This commit is contained in:
parent
987cb7799b
commit
9dbc01db13
@ -111,7 +111,7 @@ inline bool is_file(const std::filesystem::path& p)
|
||||
{
|
||||
#if __ANDROID__
|
||||
if (FilesystemAndroid::isContentUri(p))
|
||||
return FilesystemAndroid::isDirectory(p);
|
||||
return FilesystemAndroid::isFile(p);
|
||||
#endif // __ANDROID__
|
||||
return std::filesystem::is_regular_file(p);
|
||||
}
|
||||
@ -119,7 +119,7 @@ inline bool is_file(const std::filesystem::path& p, std::error_code& ec)
|
||||
{
|
||||
#if __ANDROID__
|
||||
if (FilesystemAndroid::isContentUri(p))
|
||||
return FilesystemAndroid::isDirectory(p);
|
||||
return FilesystemAndroid::isFile(p);
|
||||
#endif // __ANDROID__
|
||||
return std::filesystem::is_regular_file(p, ec);
|
||||
}
|
||||
@ -127,7 +127,7 @@ inline bool exists(const std::filesystem::path& p)
|
||||
{
|
||||
#if __ANDROID__
|
||||
if (FilesystemAndroid::isContentUri(p))
|
||||
return FilesystemAndroid::isDirectory(p);
|
||||
return FilesystemAndroid::exists(p);
|
||||
#endif // __ANDROID__
|
||||
return std::filesystem::exists(p);
|
||||
}
|
||||
@ -135,7 +135,7 @@ inline bool exists(const std::filesystem::path& p, std::error_code& ec)
|
||||
{
|
||||
#if __ANDROID__
|
||||
if (FilesystemAndroid::isContentUri(p))
|
||||
return FilesystemAndroid::isDirectory(p);
|
||||
return FilesystemAndroid::exists(p);
|
||||
#endif // __ANDROID__
|
||||
return std::filesystem::exists(p, ec);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user