Update src/common/fs_file.cpp
Co-authored-by: GPUCode <47210458+GPUCode@users.noreply.github.com>
This commit is contained in:
parent
4bd4d2ff53
commit
d4ac82eef2
|
@ -60,8 +60,7 @@ u64 File::tell() const {
|
|||
|
||||
std::vector<DirEntry> File::getDirectoryEntries(const std::string& path) {
|
||||
std::string curpath = path;
|
||||
if (!curpath.ends_with("/"))
|
||||
{
|
||||
if (!curpath.ends_with("/")) {
|
||||
curpath = std::string(curpath + "/");
|
||||
}
|
||||
std::vector<DirEntry> files;
|
||||
|
|
Loading…
Reference in New Issue