From 79fd77444a28f1803805d557a5b9a88cceefc79c Mon Sep 17 00:00:00 2001 From: posix Date: Mon, 10 Aug 2020 21:35:36 +0200 Subject: [PATCH] Update consolesettingswidget.cpp This the way to do it? --- src/duckstation-qt/consolesettingswidget.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/duckstation-qt/consolesettingswidget.cpp b/src/duckstation-qt/consolesettingswidget.cpp index 20aa5d11a..a3bdf4e32 100644 --- a/src/duckstation-qt/consolesettingswidget.cpp +++ b/src/duckstation-qt/consolesettingswidget.cpp @@ -35,6 +35,9 @@ ConsoleSettingsWidget::ConsoleSettingsWidget(QtHostInterface* host_interface, QW dialog->registerWidgetHelp(m_ui.fastBoot, tr("Fast Boot"), tr("Unchecked"), tr("Patches the BIOS to skip the console's boot animation. Does not work with all games, " "but usually safe to enabled.")); + + dialog->registerWidgetHelp(m_ui.cdromLoadImageToRAM, tr("Preload Image to RAM"), tr("Unchecked"), + tr("Loads the game image into RAM. Useful for network paths that may become unreliable during gameplay.")); } ConsoleSettingsWidget::~ConsoleSettingsWidget() = default;