home · contact · privacy
Replaced obsolete end-of-list detection with new one.
authorChristian Heller <c.heller@plomlompom.de>
Thu, 2 May 2013 00:03:41 +0000 (02:03 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Thu, 2 May 2013 00:03:41 +0000 (02:03 +0200)
roguelike.c

index 34f3c855da6c9d2927bfad84e73ff11fe207f4e7..7d535bc9221b7ea446ad2f1128570ade548ad017 100644 (file)
@@ -218,7 +218,7 @@ void draw_keys_window (struct Win * win) {
   attr_t attri;
   int y, x;
   char * keyname;
-  for (y = 0; 0 != keybindings[offset + y].name && y < win->height; y++) {
+  for (y = 0; y <= keyswindata->max && y < win->height; y++) {
     attri = 0;
     if (y == keyswindata->select - offset) {
       attri = A_REVERSE;