fix
All checks were successful
eden-license / license-header (pull_request) Successful in 24s

Signed-off-by: lizzie <lizzie@eden-emu.dev>
This commit is contained in:
lizzie 2025-09-27 00:43:02 +00:00 committed by crueter
parent 8810e3b31f
commit 3784f7b9e5
2 changed files with 6 additions and 6 deletions

View file

@ -69,7 +69,7 @@ std::unique_ptr<TranslationMap> InitializeTranslations(QObject* parent)
memory_layout_mode, memory_layout_mode,
tr("Memory Layout"), tr("Memory Layout"),
tr("Increases the amount of emulated RAM from 4GB of the board to the " tr("Increases the amount of emulated RAM from 4GB of the board to the "
"devkit 8/6GB.\nDoesn't affect performance/stability but allows HD texture " "devkit 8/6GB.\nDoesn't affect performance/stability but may allow HD texture "
"mods to load.")); "mods to load."));
INSERT(Settings, use_speed_limit, QString(), QString()); INSERT(Settings, use_speed_limit, QString(), QString());
INSERT(Settings, INSERT(Settings,
@ -98,7 +98,7 @@ std::unique_ptr<TranslationMap> InitializeTranslations(QObject* parent)
fast_cpu_time, fast_cpu_time,
tr("Fast CPU Time"), tr("Fast CPU Time"),
tr("Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, " tr("Overclocks the emulated CPU to remove some FPS limiters. Weaker CPUs may see reduced performance, "
"and certain games may behave improperly.\nUse Boost (1700MHz) to run at the highest native " "and certain games may behave improperly.\nUse Boost (1700MHz) to run at the Switch's highest native "
"clock, or Fast (2000MHz) to run at 2x clock.")); "clock, or Fast (2000MHz) to run at 2x clock."));
INSERT(Settings, use_custom_cpu_ticks, QString(), QString()); INSERT(Settings, use_custom_cpu_ticks, QString(), QString());
@ -189,7 +189,7 @@ std::unique_ptr<TranslationMap> InitializeTranslations(QObject* parent)
INSERT(Settings, INSERT(Settings,
aspect_ratio, aspect_ratio,
tr("Aspect Ratio:"), tr("Aspect Ratio:"),
tr("Stretches the renderer to fit the specified aspect ratio.\nMost programs only support " tr("Stretches the renderer to fit the specified aspect ratio.\nMost games only support "
"16:9, so modifications are required to get other ratios.\nAlso controls the " "16:9, so modifications are required to get other ratios.\nAlso controls the "
"aspect ratio of captured screenshots.")); "aspect ratio of captured screenshots."));
INSERT(Settings, INSERT(Settings,
@ -199,7 +199,7 @@ std::unique_ptr<TranslationMap> InitializeTranslations(QObject* parent)
"boots.\nDisabling it is only intended for debugging.")); "boots.\nDisabling it is only intended for debugging."));
INSERT(Settings, INSERT(Settings,
optimize_spirv_output, optimize_spirv_output,
tr("Optimize SPIRV shader"), tr("Optimize SPIRV output"),
tr("Runs an additional optimization pass over generated SPIRV shaders.\n" tr("Runs an additional optimization pass over generated SPIRV shaders.\n"
"Will increase time required for shader compilation.\nMay slightly improve " "Will increase time required for shader compilation.\nMay slightly improve "
"performance.\nThis feature is experimental.")); "performance.\nThis feature is experimental."));

View file

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