From 5d3247c2c17bc8133d3dbae26cadb0268e964710 Mon Sep 17 00:00:00 2001 From: sparky4 Date: Mon, 4 Apr 2016 14:04:39 -0500 Subject: [PATCH] wwww fixed www --- src/lib/modex16.c | 5 ++--- src/lib/modex16.h | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/lib/modex16.c b/src/lib/modex16.c index 7d7d7631..b6e12c1e 100755 --- a/src/lib/modex16.c +++ b/src/lib/modex16.c @@ -35,7 +35,7 @@ static byte tmppal[PAL_SIZE]; // setvideo() - This function Manages the video modes // // // ///////////////////////////////////////////////////////////////////////////// -void VGAmodeX(sword vq, byte cm, global_game_variables_t *gv) +void VGAmodeX(sword vq, boolean cm, global_game_variables_t *gv) { union REGS in, out; @@ -86,8 +86,7 @@ vgaGetMode() } /* -========================= Entry Points ==========================- */ -void -modexEnter(sword vq, boolean cm, global_game_variables_t *gv) +void modexEnter(sword vq, boolean cm, global_game_variables_t *gv) { word i; dword far*ptr=(dword far*)VGA; /* used for faster screen clearing */ diff --git a/src/lib/modex16.h b/src/lib/modex16.h index 1ba62683..c21cfc2f 100755 --- a/src/lib/modex16.h +++ b/src/lib/modex16.h @@ -82,8 +82,8 @@ typedef union /* -============================ Functions =============================- */ /* mode switching, page, and plane functions */ -void VGAmodeX(sword vq, byte cm, global_game_variables_t *gv) -void modexEnter(sword vq, byte cm, global_game_variables_t *gv); +void VGAmodeX(sword vq, boolean cm, global_game_variables_t *gv); +void modexEnter(sword vq, boolean cm, global_game_variables_t *gv); long vgaGetMode(); void modexLeave(); void modexsetBaseXMode(page_t *page); -- 2.39.5