diff --git a/ui/drivers/qt/options/input.cpp b/ui/drivers/qt/options/input.cpp index 579113bbbc..ad1856b186 100644 --- a/ui/drivers/qt/options/input.cpp +++ b/ui/drivers/qt/options/input.cpp @@ -41,6 +41,9 @@ QWidget *InputPage::widget() layout->add(MENU_ENUM_LABEL_INPUT_MAX_USERS); layout->add(MENU_ENUM_LABEL_INPUT_UNIFIED_MENU_CONTROLS); + layout->add(MENU_ENUM_LABEL_QUIT_PRESS_TWICE); + layout->add(MENU_ENUM_LABEL_VIBRATE_ON_KEYPRESS); + layout->add(MENU_ENUM_LABEL_ENABLE_DEVICE_VIBRATION); layout->add(MENU_ENUM_LABEL_INPUT_POLL_TYPE_BEHAVIOR); layout->add(MENU_ENUM_LABEL_INPUT_MENU_ENUM_TOGGLE_GAMEPAD_COMBO); layout->add(MENU_ENUM_LABEL_MENU_INPUT_SWAP_OK_CANCEL); diff --git a/ui/drivers/qt/options/osd.cpp b/ui/drivers/qt/options/osd.cpp index 9bdf9533d1..19df0cf7c8 100644 --- a/ui/drivers/qt/options/osd.cpp +++ b/ui/drivers/qt/options/osd.cpp @@ -33,6 +33,7 @@ QWidget *NotificationsPage::widget() notificationsGroup->add(MENU_ENUM_LABEL_FPS_SHOW); notificationsGroup->add(MENU_ENUM_LABEL_FRAMECOUNT_SHOW); notificationsGroup->add(MENU_ENUM_LABEL_MEMORY_SHOW); + notificationsGroup->add(MENU_ENUM_LABEL_STATISTICS_SHOW); notificationsGroup->add(MENU_ENUM_LABEL_VIDEO_FONT_PATH); notificationsGroup->add(MENU_ENUM_LABEL_VIDEO_FONT_SIZE); notificationsGroup->add(MENU_ENUM_LABEL_VIDEO_MESSAGE_POS_X); diff --git a/ui/drivers/qt/options/playlists.cpp b/ui/drivers/qt/options/playlists.cpp index 63c74368b5..00c52e76ad 100644 --- a/ui/drivers/qt/options/playlists.cpp +++ b/ui/drivers/qt/options/playlists.cpp @@ -33,7 +33,11 @@ QWidget *PlaylistsPage::widget() layout->add(MENU_ENUM_LABEL_PLAYLIST_ENTRY_RENAME); layout->add(MENU_ENUM_LABEL_PLAYLIST_ENTRY_REMOVE); + layout->add(MENU_ENUM_LABEL_PLAYLIST_SORT_ALPHABETICAL); layout->add(MENU_ENUM_LABEL_PLAYLIST_USE_OLD_FORMAT); + layout->add(MENU_ENUM_LABEL_PLAYLIST_SHOW_SUBLABELS); + layout->add(MENU_ENUM_LABEL_PLAYLIST_FUZZY_ARCHIVE_MATCH); + layout->add(MENU_ENUM_LABEL_SCAN_WITHOUT_CORE_MATCH); widget->setLayout(layout); diff --git a/ui/drivers/qt/options/saving.cpp b/ui/drivers/qt/options/saving.cpp index 29389eb729..78946a5072 100644 --- a/ui/drivers/qt/options/saving.cpp +++ b/ui/drivers/qt/options/saving.cpp @@ -31,6 +31,7 @@ QWidget *SavingPage::widget() SettingsGroup *saveRamGroup = new SettingsGroup("SaveRAM"); SettingsGroup *systemFilesDirGroup = new SettingsGroup("System Files"); SettingsGroup *screenshotsDirGroup = new SettingsGroup("Screenshots"); + SettingsGroup *runtimeLogGroup = new SettingsGroup("Runtime Log"); savesGroup->add(MENU_ENUM_LABEL_SORT_SAVEFILES_ENABLE); savesGroup->add(MENU_ENUM_LABEL_SAVEFILES_IN_CONTENT_DIR_ENABLE); @@ -51,11 +52,15 @@ QWidget *SavingPage::widget() screenshotsDirGroup->add(MENU_ENUM_LABEL_SCREENSHOTS_IN_CONTENT_DIR_ENABLE); + runtimeLogGroup->add(MENU_ENUM_LABEL_CONTENT_RUNTIME_LOG); + runtimeLogGroup->add(MENU_ENUM_LABEL_CONTENT_RUNTIME_LOG_AGGREGATE); + layout->addRow(savesGroup); layout->addRow(savestatesGroup); layout->addRow(saveRamGroup); layout->addRow(systemFilesDirGroup); layout->addRow(screenshotsDirGroup); + layout->addRow(runtimeLogGroup); widget->setLayout(layout); diff --git a/ui/drivers/qt/options/ui.cpp b/ui/drivers/qt/options/ui.cpp index b0aff0613c..be8e55f33a 100644 --- a/ui/drivers/qt/options/ui.cpp +++ b/ui/drivers/qt/options/ui.cpp @@ -43,6 +43,7 @@ QWidget *UserInterfacePage::widget() rarch_setting_t *kioskMode = menu_setting_find_enum(MENU_ENUM_LABEL_MENU_ENABLE_KIOSK_MODE); menuGroup->add(MENU_ENUM_LABEL_SHOW_ADVANCED_SETTINGS); + menuGroup->add(MENU_ENUM_LABEL_MENU_WIDGETS_ENABLE); /* only on XMB and Ozone*/ if (kioskMode)