Fixed content path generation

This commit is contained in:
Adubbz 2019-07-27 23:43:54 +10:00
parent ebc619fe56
commit 7a81ca9441
2 changed files with 3 additions and 3 deletions

View file

@ -272,7 +272,7 @@ namespace sts::ncm {
std::abort();
}
snprintf(out_common_path, out_len, "%s:/%s", common_mount_name, translated_path);
snprintf(out_common_path, out_len, "%s:%s", common_mount_name, translated_path);
return ResultSuccess;
}