From cffb73826a1c1aed1647ecda2097d665aa125c43 Mon Sep 17 00:00:00 2001 From: Thomas Jentzsch Date: Fri, 29 Mar 2019 11:47:36 +0100 Subject: [PATCH] Minor bug fix for Sega Genesis detection display --- src/gui/GameInfoDialog.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/GameInfoDialog.cxx b/src/gui/GameInfoDialog.cxx index 6b3d353f7..0bdfa0217 100644 --- a/src/gui/GameInfoDialog.cxx +++ b/src/gui/GameInfoDialog.cxx @@ -210,7 +210,7 @@ GameInfoDialog::GameInfoDialog( ypos += lineHeight + VGAP; myLeftPortDetected = new StaticTextWidget(myTab, ifont, myLeftPort->getLeft(), ypos, - "BoosterGrip detected"); + "Sega Genesis detected"); ypos += ifont.getLineHeight() + VGAP; myRightPortLabel = new StaticTextWidget(myTab, font, HBORDER, ypos+1, "Right port "); @@ -220,7 +220,7 @@ GameInfoDialog::GameInfoDialog( wid.push_back(myRightPort); ypos += lineHeight + VGAP; myRightPortDetected = new StaticTextWidget(myTab, ifont, myRightPort->getLeft(), ypos, - "BoosterGrip detected"); + "Sega Genesis detected"); ypos += ifont.getLineHeight() + VGAP + 4; mySwapPorts = new CheckboxWidget(myTab, font, myLeftPort->getRight() + fontWidth*4, @@ -591,7 +591,7 @@ void GameInfoDialog::setDefaults() loadCartridgeProperties(defaultProperties); break; - default: // make the complier happy + default: // make the compiler happy break; } }