From: nhmall Date: Thu, 27 Feb 2020 02:38:38 +0000 (-0500) Subject: fix build break when there's no #define for CLIPPING X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3c95cba5263c6ab6f8deb4ce69b02c35de594fbb;p=nethack fix build break when there's no #define for CLIPPING --- diff --git a/win/tty/wintty.c b/win/tty/wintty.c index 084f82939..8a54430d6 100644 --- a/win/tty/wintty.c +++ b/win/tty/wintty.c @@ -445,7 +445,7 @@ char **argv UNUSED; if (tty_procs.wincap2 & WC2_STATUSLINES) set_wc2_option_mod_status(WC2_STATUSLINES, #ifndef CLIPPING - (LI < 1 + ROWNO + 2) ? DISP_IN_GAME : + (LI < 1 + ROWNO + 2) ? set_gameview : #endif set_in_game); }