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.
This commit is contained in:
Ray Chason
2020-01-25 19:03:48 -05:00
committed by Pasi Kallinen
parent b2c8d916f6
commit 34da5ea372

View File

@@ -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)