diff --git a/src/gui/GameInfoDialog.cxx b/src/gui/GameInfoDialog.cxx index 5cc465a20..d5507063c 100644 --- a/src/gui/GameInfoDialog.cxx +++ b/src/gui/GameInfoDialog.cxx @@ -583,7 +583,7 @@ void GameInfoDialog::addHighScoresTab() ypos += lineHeight + VGAP * 3; - myHighScoreNotesLabel = new StaticTextWidget(myTab, _font, xpos, ypos + 1, "Notes"); + myHighScoreNotesLabel = new StaticTextWidget(myTab, _font, xpos, ypos + 1, "Note"); myHighScoreNotes = new EditTextWidget(myTab, _font, mySpecialName->getLeft(), ypos - 1, _w - HBORDER - mySpecialName->getLeft() - 2 , lineHeight); myHighScoreNotes->setTextFilter(fText); diff --git a/src/gui/HighScoresDialog.cxx b/src/gui/HighScoresDialog.cxx index 7d3b6958e..9bdf6a7b5 100644 --- a/src/gui/HighScoresDialog.cxx +++ b/src/gui/HighScoresDialog.cxx @@ -144,7 +144,8 @@ HighScoresDialog::HighScoresDialog(OSystem& osystem, DialogContainer& parent, ypos += infoLineHeight + VGAP; - myMD5Widget = new StaticTextWidget(this, ifont, xpos, ypos + 1, "MD5: 12345678901234567890123456789012"); + myMD5Widget = new StaticTextWidget(this, ifont, xpos, ypos + 1, + "MD5: 12345678901234567890123456789012"); _h = myMD5Widget->getBottom() + VBORDER + buttonHeight(_font) + VBORDER;