X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fdraw_wins.c;h=69278e8393631a351326ae725e682a304a267ab7;hb=0438f2fc5df337e4264103a86c1765ace9c6565a;hp=dc655e76dad51d71d522794a2e240bfa50dbde19;hpb=6b1d36c9e673fd8f8595119080dca63a39ba483b;p=plomrogue diff --git a/src/client/draw_wins.c b/src/client/draw_wins.c index dc655e7..69278e8 100644 --- a/src/client/draw_wins.c +++ b/src/client/draw_wins.c @@ -10,9 +10,8 @@ #include /* memset(), strchr(), strdup/(), strlen() */ #include "../common/rexit.h" /* exit_err() */ #include "../common/try_malloc.h" /* try_malloc() */ -#include "../common/yx_uint16.h" /* struct yx_uint16 */ #include "keybindings.h" /* struct KeyBindingDB, get_keyname_to_keycode() */ -#include "windows.h" /* struct Win, get_win_by_id() */ +#include "windows.h" /* yx_uint16, Win, get_win_by_id() */ #include "world.h" /* global world */ @@ -186,7 +185,8 @@ static void add_line_compact(struct Win * win, char * line, attr_t attri, uint32_t len_line_new = len_line + strlen(separator); char line_new[len_line_new]; sprintf(line_new, "%s%s", line, separator); - uint16_t x, y; + uint16_t x = 0; + uint16_t y; uint32_t z; for (z = 0, y = y_start; z < len_line_new; y++) { @@ -204,7 +204,7 @@ static void add_line_compact(struct Win * win, char * line, attr_t attri, try_resize_winmap(win, y + 1 + 1, win->winmap_size.x); } } - * offset = x; + *offset = x; } @@ -338,12 +338,12 @@ extern void draw_win_log(struct Win * win) extern void draw_win_map(struct Win * win) { - try_resize_winmap(win, world.map.size.y, world.map.size.x * 2); + try_resize_winmap(win, world.map.length, world.map.length * 2); uint16_t z = 0; uint16_t x, y; - for (y = 0; y < world.map.size.y; y++) + for (y = 0; y < world.map.length; y++) { - for (x = 0; x < world.map.size.x; x++) + for (x = 0; x < world.map.length; x++) { set_ch_on_yx(win, y, x * 2 + (y % 2), world.map.cells[z]); z++;