From cd36bdbd599f3c94b4bfbda9993777acba3064ef Mon Sep 17 00:00:00 2001 From: Rosalie Wanders Date: Mon, 1 Jul 2024 14:54:56 +0200 Subject: [PATCH] RMG-Input: improve letter casing --- Source/RMG-Input/UserInterface/OptionsDialog.cpp | 2 +- Source/RMG-Input/UserInterface/OptionsDialog.ui | 8 ++++---- .../RMG-Input/UserInterface/Widget/ControllerWidget.cpp | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Source/RMG-Input/UserInterface/OptionsDialog.cpp b/Source/RMG-Input/UserInterface/OptionsDialog.cpp index 240bf79f..b27a3303 100644 --- a/Source/RMG-Input/UserInterface/OptionsDialog.cpp +++ b/Source/RMG-Input/UserInterface/OptionsDialog.cpp @@ -108,7 +108,7 @@ void OptionsDialog::on_changeGameboyRomButton_clicked() void OptionsDialog::on_changeGameboySaveButton_clicked() { QString gameBoySave; - gameBoySave = QFileDialog::getOpenFileName(this, "", "", "Gameboy SAVE (*.sav *.ram)"); + gameBoySave = QFileDialog::getOpenFileName(this, "", "", "Gameboy save (*.sav *.ram)"); if (!gameBoySave.isEmpty()) { diff --git a/Source/RMG-Input/UserInterface/OptionsDialog.ui b/Source/RMG-Input/UserInterface/OptionsDialog.ui index e6744486..a6a427a2 100644 --- a/Source/RMG-Input/UserInterface/OptionsDialog.ui +++ b/Source/RMG-Input/UserInterface/OptionsDialog.ui @@ -122,7 +122,7 @@ - Gameboy SAVE + Gameboy save @@ -205,21 +205,21 @@ - Remove Duplicate Mappings + Remove duplicate mappings - Filter Events Based On Joystick Type For Buttons + Filter events based on joystick type for buttons - Filter Events Based On Joystick Type For Axis + Filter events based on joystick type for axis diff --git a/Source/RMG-Input/UserInterface/Widget/ControllerWidget.cpp b/Source/RMG-Input/UserInterface/Widget/ControllerWidget.cpp index 66f3c8a1..601a91b6 100644 --- a/Source/RMG-Input/UserInterface/Widget/ControllerWidget.cpp +++ b/Source/RMG-Input/UserInterface/Widget/ControllerWidget.cpp @@ -777,7 +777,7 @@ void ControllerWidget::on_removeProfileButton_clicked() { QMessageBox messageBox(this); messageBox.setIcon(QMessageBox::Icon::Warning); - messageBox.setText("Are you sure you want to reset the main profile?"); + messageBox.setText("Are you sure you want to clear the main profile?"); messageBox.addButton(QMessageBox::Yes); messageBox.addButton(QMessageBox::No); if (messageBox.exec() == QMessageBox::Yes)