From 34da5ea3728924024dd4aaba5302f0ac4c075616 Mon Sep 17 00:00:00 2001 From: Ray Chason Date: Sat, 25 Jan 2020 19:03:48 -0500 Subject: [PATCH] MSDOS/VESA: Make clipy and clipymax available to MS-DOS VESA mode may need to scroll up and down as well as left and right. --- win/tty/wintty.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/win/tty/wintty.c b/win/tty/wintty.c index a6ad2f7a2..fda9f6aa3 100644 --- a/win/tty/wintty.c +++ b/win/tty/wintty.c @@ -155,11 +155,12 @@ char defmorestr[] = "--More--"; #if defined(USE_TILES) && defined(MSDOS) boolean clipping = FALSE; /* clipping on? */ int clipx = 0, clipxmax = 0; +int clipy = 0, clipymax = 0; #else static boolean clipping = FALSE; /* clipping on? */ static int clipx = 0, clipxmax = 0; -#endif static int clipy = 0, clipymax = 0; +#endif #endif /* CLIPPING */ #if defined(USE_TILES) && defined(MSDOS)