Fix HasFile and HasDirectory

This commit is contained in:
Adubbz
2019-07-27 01:08:22 +10:00
parent 1cd8ac2bb2
commit 80d1ec57d1
2 changed files with 10 additions and 5 deletions

View File

@@ -127,8 +127,9 @@ namespace sts::ncm {
}
Result ContentStorageInterface::HasPlaceHolder(Out<bool> out, PlaceHolderId placeholder_id) {
if (this->disabled)
if (this->disabled) {
return ResultNcmInvalidContentStorage;
}
char placeholder_path[FS_MAX_PATH] = {0};
this->placeholder_accessor.GetPlaceHolderPath(placeholder_path, placeholder_id);