X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fdraw_wins.c;h=b589a30ec7a8644ee5679c11395cb3916b737cb0;hb=8f60274cc94ea4b2d3a0bb71169e50b0d06ae629;hp=1549d13f7284ea9c110c59ca8375f7122a76e8b4;hpb=7290dec4219eaa2325aa00ef6139f715743dba3a;p=plomrogue diff --git a/src/draw_wins.c b/src/draw_wins.c index 1549d13..b589a30 100644 --- a/src/draw_wins.c +++ b/src/draw_wins.c @@ -386,13 +386,13 @@ extern void draw_win_inventory(struct Win * win) add_line(win, "(none)", 0, 0); return; } - win->center.y = world.inventory_select; + win->center.y = world.inventory_sel; struct MapObj * owned = player->owns; uint8_t y; for (y = 0; NULL != owned; y++) { attr_t attri = 0; - if (y == world.inventory_select) + if (y == world.inventory_sel) { attri = A_REVERSE; } @@ -471,10 +471,10 @@ extern void draw_winconf_geometry(struct Win * win) char * title = "Window's geometry:\n"; char * h_d = "\nHeight to save: "; char * h_pos = " (width in cells)"; - char * h_neg = " (negative diff: cells to maximum width)"; + char * h_neg = " (negative diff: cells to screen width)"; char * w_d = "\n\nWidth to save: "; char * w_pos = " (height in cells)"; - char * w_neg = " (negative diff: cells to maximum height)"; + char * w_neg = " (negative diff: cells to screen height)"; char * h_t = h_pos; char * w_t = w_pos; if (1 == wcp->height_type)