summaryrefslogtreecommitdiff
path: root/noncore/games/kpacman
Unidiff
Diffstat (limited to 'noncore/games/kpacman') (more/less context) (show whitespace changes)
-rw-r--r--noncore/games/kpacman/score.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/games/kpacman/score.cpp b/noncore/games/kpacman/score.cpp
index 6878b81..737f03b 100644
--- a/noncore/games/kpacman/score.cpp
+++ b/noncore/games/kpacman/score.cpp
@@ -241,3 +241,3 @@ void Score::keyPressEvent(QKeyEvent *k)
241 if (x != cursor.x || y != cursor.y) { 241 if (x != cursor.x || y != cursor.y) {
242 if (cursor.x != -1) 242 if (cursor.x != -1 && lastScore >= 0)
243 cursor.chr = hallOfFame[lastScore].name.at(cursor.x-14); 243 cursor.chr = hallOfFame[lastScore].name.at(cursor.x-14);
@@ -245,3 +245,3 @@ void Score::keyPressEvent(QKeyEvent *k)
245 repaint(rect(x, y*1.25, cursor.chr), FALSE); 245 repaint(rect(x, y*1.25, cursor.chr), FALSE);
246 } else 246 } else if (lastScore >= 0)
247 hallOfFame[lastScore].name.at(cursor.x-14) = cursor.chr; 247 hallOfFame[lastScore].name.at(cursor.x-14) = cursor.chr;