X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/decks/%7B%7Bdeck_id%7D%7D/cards/%7B%7Bcard_id%7D%7D/static/gitweb.css?a=blobdiff_plain;f=src%2Fwindows.h;h=2116b7bef605ae875504ef1e732f089b60f41444;hb=f5d7b724bd9572a918f3f8a1803a23648458a07c;hp=a13e447c2d98d340d0ed2db562ede8b6d72b60b8;hpb=6403baf26d20951ef830ed9660a23241c3079896;p=plomrogue diff --git a/src/windows.h b/src/windows.h index a13e447..2116b7b 100644 --- a/src/windows.h +++ b/src/windows.h @@ -96,16 +96,16 @@ extern uint8_t init_win_meta(WINDOW * screen, struct WinMeta * wmeta); -/* Create a window below inside "wmeta" titled "title" of "height" and "width" +/* Create a window as child of "wmeta" titled "title" of "height" and "width" * and appointing "func"() to interpret and draw the content stored at "data" * if the window is visible. * - * A value for "width" <1 will trigger a fallback to width=1. A "height" <1 or + * A value for "width" <1 will trigger a fallback to width=1. A "height" < 1 or * larger than the maximum window height possible within the virtual screen will * trigger a fallback to the maximum height possible (i.e. pass a "height" of 0 * to initialize the window to its largest possible height). * - * Other values of the Win struct will be initialized to 0. The window will stay + * Other members of the Win struct are initialized to 0. The window will stay * invisible until appended to the chain of visible windows via append_win(). */ extern struct Win init_win(struct WinMeta * wmeta, char * title,