summaryrefslogtreecommitdiff
path: root/noncore/games/kpacman/score.cpp
Unidiff
Diffstat (limited to 'noncore/games/kpacman/score.cpp') (more/less context) (ignore 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
@@ -239,11 +239,11 @@ void Score::keyPressEvent(QKeyEvent *k)
239 } 239 }
240 240
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);
244 scrollRepeat = FALSE; 244 scrollRepeat = FALSE;
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;
248 248
249 if (key == UpKey || key == Key_Up || key == DownKey || key == Key_Down) 249 if (key == UpKey || key == Key_Up || key == DownKey || key == Key_Down)