summaryrefslogtreecommitdiff
path: root/noncore/games/kbill/UI.cpp
Side-by-side diff
Diffstat (limited to 'noncore/games/kbill/UI.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/games/kbill/UI.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/noncore/games/kbill/UI.cpp b/noncore/games/kbill/UI.cpp
index 611cebf..a49c3c1 100644
--- a/noncore/games/kbill/UI.cpp
+++ b/noncore/games/kbill/UI.cpp
@@ -71,20 +71,19 @@ void UI::popup_dialog (int dialog) {
QMessageBox::message(("Endgame"), QT_TR_NOOP(endgamestr));
break;
case Game::HIGHSCORE:
- // QMessageBox::message(("HighScore"), highscorestr);
break;
- case Game::ENTERNAME: {
+ case Game::ENTERNAME:
+ {
InputBox b(main, 0, ("Enter Name"), QT_TR_NOOP(enternamestr));
bool state = b.exec() == 2;
char str[20], *nl;
- strcpy(str, b.getText());
+ strncpy(str, b.getText(), 19);
if (!str[0] || state)
strcpy(str, "Anonymous");
else if ((nl = strchr(str, '\n')))
*nl = '\0';
- if (strlen(str) > 20)
- str[20] = 0; /* truncate string if too long */
-// scores.recalc(str);
+ if (strlen(str) > 19)
+ str[19] = '\0'; /* truncate/terminate the string if it is too long */
}
break;
case Game::SCORE: