X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fwindows.c;h=fa626848aacfe5f3b0ff9e5abc8d41e3173176b4;hb=36519c3ce33ac973889e92971abded12b51f04db;hp=576cd56e81ba4897c4494783b1ee368c21d6d223;hpb=e34629517265170e7bb3f446b9b067bab382b572;p=plomrogue diff --git a/src/client/windows.c b/src/client/windows.c index 576cd56..fa62684 100644 --- a/src/client/windows.c +++ b/src/client/windows.c @@ -23,7 +23,8 @@ * draw_win_inventory(), draw_win_info(), draw_win_log(), * draw_win_keybindings_winconf_keybindings(), * draw_win_keybindings_winconf_geometry(), - * draw_win_keybindings_global(), draw_win_map() + * draw_win_keybindings_global(), draw_win_map(), + * draw_win_terrain_stack() */ #include "wincontrol.h" /* toggle_window() */ #include "world.h" /* world */ @@ -118,6 +119,7 @@ static void (* get_drawfunc_by_char(char c)) () { void (* f) (struct Win *) = NULL; if ( match_func(c, &f, 'c', draw_win_inventory) + || match_func(c, &f, 's', draw_win_terrain_stack) || match_func(c, &f, 'i', draw_win_info) || match_func(c, &f, 'l', draw_win_log) || match_func(c, &f, 'm', draw_win_map) @@ -307,7 +309,7 @@ static void draw_wins(struct Win * w) { chtype ch = w->winmap[(y * w->winmap_size.x) + x]; mvwaddch(world.winDB.v_screen, w->start.y + (y - offset_y), - w->start.x + (x - offset_x), ch); + w->start.x + (x - offset_x), ch); } } free(w->winmap); /* NULL so draw_wins.c's try_resize_winmap() may always */