From: sparky4 Date: Mon, 4 Apr 2016 19:04:39 +0000 (-0500) Subject: wwww fixed www X-Git-Url: http://4ch.mooo.com/gitweb/?a=commitdiff_plain;h=5d3247c2c17bc8133d3dbae26cadb0268e964710;p=16.git wwww fixed www --- 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);