mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 12:55:45 +00:00
re-enable citron migration (#119)
Signed-off-by: swurl <swurl@swurl.xyz> Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/119 Co-authored-by: swurl <swurl@swurl.xyz> Co-committed-by: swurl <swurl@swurl.xyz>
This commit is contained in:
parent
28e05a5108
commit
b1b6e0064f
3 changed files with 4 additions and 9 deletions
|
@ -29,7 +29,8 @@
|
||||||
<widget class="QLabel" name="label">
|
<widget class="QLabel" name="label">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games.
|
<string>While it's recommended to use state 3, some games may perform better on lower states. Setting to 0 (disabled) may also break games.
|
||||||
If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes.</string>
|
If your GPU is older (i.e. RX570/580 or older), it may not support these features. If this is the case, set the slider to 0 and uncheck all boxes.
|
||||||
|
These settings are experimental, and may cause black screens. If your games fail to boot or are stuck on a black screen, change these settings around.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="wordWrap">
|
<property name="wordWrap">
|
||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
|
|
|
@ -611,7 +611,7 @@ void GameList::AddGamePopup(QMenu& context_menu, u64 program_id, const std::stri
|
||||||
shortcut_menu->addAction(tr("Add to Applications Menu"));
|
shortcut_menu->addAction(tr("Add to Applications Menu"));
|
||||||
#endif
|
#endif
|
||||||
context_menu.addSeparator();
|
context_menu.addSeparator();
|
||||||
QAction* properties = context_menu.addAction(tr("Properties"));
|
QAction* properties = context_menu.addAction(tr("Configure Game"));
|
||||||
|
|
||||||
favorite->setVisible(program_id != 0);
|
favorite->setVisible(program_id != 0);
|
||||||
favorite->setCheckable(true);
|
favorite->setCheckable(true);
|
||||||
|
|
|
@ -120,13 +120,7 @@ void UserDataMigrator::ShowMigrationPrompt(QMainWindow *main_window)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
QAbstractButton *button = migration_prompt.addButton(iter.key());
|
QAbstractButton *button = migration_prompt.addButton(iter.key());
|
||||||
// TMP: disable citron
|
|
||||||
if (iter.key() == main_window->tr("Citron")) {
|
|
||||||
button->setEnabled(false);
|
|
||||||
button->setToolTip(
|
|
||||||
main_window->tr("Citron migration is known to cause issues. It's recommended "
|
|
||||||
"to manually set up your data again."));
|
|
||||||
}
|
|
||||||
buttonMap[iter.key()] = button;
|
buttonMap[iter.key()] = button;
|
||||||
promptText.append(main_window->tr("\n- %1").arg(iter.key()));
|
promptText.append(main_window->tr("\n- %1").arg(iter.key()));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue