Update MappingWindow.cpp

This commit is contained in:
PPLToast 2021-10-05 16:53:23 +03:00 committed by GitHub
parent 33ffc7aa66
commit e26d2053e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -378,8 +378,8 @@ void MappingWindow::SetMappingType(MappingWindow::Type type)
{
case Type::MAPPING_GC_GBA:
widget = new GBAPadEmu(this);
setWindowTitle(tr("GameBoy Advance at Port %1").arg(GetPort() + 1));
AddWidget(tr("GameBoy Advance"), widget);
setWindowTitle(tr("Game Boy Advance at Port %1").arg(GetPort() + 1));
AddWidget(tr("Game Boy Advance"), widget);
break;
case Type::MAPPING_GC_KEYBOARD:
widget = new GCKeyboardEmu(this);
@ -436,7 +436,7 @@ void MappingWindow::SetMappingType(MappingWindow::Type type)
AddWidget(tr("3D"), new Hotkey3D(this));
AddWidget(tr("Save and Load State"), new HotkeyStates(this));
AddWidget(tr("Other State Management"), new HotkeyStatesOther(this));
AddWidget(tr("GameBoy Advance"), new HotkeyGBA(this));
AddWidget(tr("Game Boy Advance"), new HotkeyGBA(this));
setWindowTitle(tr("Hotkey Settings"));
break;
}