mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2024-11-23 00:25:47 +01:00
Add comment to clarify the nullptr check
This commit is contained in:
parent
2079bb4090
commit
5892fc1555
@ -55,6 +55,7 @@ std::string VfsDirectoryServiceWrapper::GetName() const {
|
||||
ResultCode VfsDirectoryServiceWrapper::CreateFile(const std::string& path_, u64 size) const {
|
||||
std::string path(FileUtil::SanitizePath(path_));
|
||||
auto dir = GetDirectoryRelativeWrapped(backing, FileUtil::GetParentPath(path));
|
||||
// dir can be nullptr if path contains subdirectories, create those prior to creating the file.
|
||||
if (dir == nullptr) {
|
||||
dir = backing->CreateSubdirectory(FileUtil::GetParentPath(path));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user