Merge pull request #9195 from jordan-woyak/mem-warning

DolphinQt: Add a warning to the MEM1/MEM2 override setting description.
This commit is contained in:
Léo Lam 2020-10-26 18:49:33 +01:00 committed by GitHub
commit aae72c3e75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -129,10 +129,10 @@ void AdvancedPane::CreateLayout()
mem2_override_slider_layout->addWidget(m_mem2_override_slider_label);
auto* ram_override_description =
new QLabel(tr("Adjusts the emulated sizes of MEM1 and MEM2.\n\n"
"Some titles may recognize the larger memory arena(s) and take "
"advantage of it, though retail titles are normally optimized for "
"the retail memory limitations."));
new QLabel(tr("Adjusts the amount of RAM in the emulated console.\n\n"
"WARNING: Enabling this will completely break many games. Only a small number "
"of games can benefit from this."));
ram_override_description->setWordWrap(true);
ram_override_layout->addWidget(ram_override_description);