X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/edit?a=blobdiff_plain;f=src%2Fdraw_wins.c;h=74b6c45ba0792434c0f82ab74c228907d4bd0256;hb=ffacb8844b9d843fe82ba7f912706b2e96bc6856;hp=797864adb5d9cb854db441bb4ab759bc585eacab;hpb=657d5dbc6d362d7b20693c63b38d8d99f3d2dbbd;p=plomrogue diff --git a/src/draw_wins.c b/src/draw_wins.c index 797864a..74b6c45 100644 --- a/src/draw_wins.c +++ b/src/draw_wins.c @@ -509,12 +509,12 @@ extern void draw_winconf_geometry(struct Win * win) struct World * world = (struct World *) win->data; struct WinConf * wcp = get_winconf_by_win(world, win); char * title = "Window's geometry:\n"; - char * h_d = "\nWidth to save: "; - char * h_pos = " (height in cells)"; - char * h_neg = " (negative diff: cells to maximum height)"; - char * w_d = "\n\nHeight to save: "; - char * w_pos = " (width in cells)"; - char * w_neg = " (negative diff: cells to maximum width)"; + char * h_d = "\nHeight to save: "; + char * h_pos = " (width in cells)"; + char * h_neg = " (negative diff: cells to maximum width)"; + char * w_d = "\n\nWidth to save: "; + char * w_pos = " (height in cells)"; + char * w_neg = " (negative diff: cells to maximum height)"; char * h_t = h_pos; char * w_t = w_pos; if (1 == wcp->height_type) @@ -530,6 +530,6 @@ extern void draw_winconf_geometry(struct Win * win) + strlen(w_t) + strlen(w_d) + 6 + 1; char text[maxl + 1]; sprintf(text, "%s%s%d%s%s%d%s", title, h_d, wcp->height, h_t, - w_d, wcp->width, w_t); + w_d, wcp->width, w_t); draw_with_linebreaks(win, text, 0); }