[dist, docs] Clearer wording for settings, guidelines for new settings

Signed-off-by: lizzie <lizzie@eden-emu.dev>
This commit is contained in:
lizzie 2025-09-24 21:40:54 +00:00 committed by crueter
parent c725641f13
commit 0d80214bc2
5 changed files with 95 additions and 86 deletions

View file

@ -373,13 +373,13 @@ bool ConfigureProfileManager::LoadAvatarData() {
const auto romfs = nca->GetRomFS();
if (!romfs) {
QMessageBox::warning(this, tr("Error loading archive"),
tr("Archive does not contain romfs. It is probably corrupt."));
tr("Archive does not contain romfs. It's probably corrupt."));
return false;
}
const auto extracted = FileSys::ExtractRomFS(romfs);
if (!extracted) {
QMessageBox::warning(this, tr("Error extracting archive"),
tr("Archive could not be extracted. It is probably corrupt."));
tr("Archive could not be extracted. It's probably corrupt."));
return false;
}
const auto chara_dir = extracted->GetSubdirectory("chara");