mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-26 22:40:50 +00:00
Fullscreen has been an integer for some time now.
At least since we introduced support for mod changing and for scaling fullscreen.
This commit is contained in:
parent
b28546239e
commit
21fcb48565
1 changed files with 3 additions and 3 deletions
|
@ -1100,7 +1100,7 @@ R_InitGraphics( int width, int height )
|
||||||
R_GammaCorrectAndSetPalette((const unsigned char *)d_8to24table);
|
R_GammaCorrectAndSetPalette((const unsigned char *)d_8to24table);
|
||||||
}
|
}
|
||||||
|
|
||||||
static rserr_t SWimp_SetMode(int *pwidth, int *pheight, int mode, qboolean fullscreen);
|
static rserr_t SWimp_SetMode(int *pwidth, int *pheight, int mode, int fullscreen);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** RE_BeginFrame
|
** RE_BeginFrame
|
||||||
|
@ -1835,7 +1835,7 @@ char shift_size;
|
||||||
** vid.width and vid.height.
|
** vid.width and vid.height.
|
||||||
*/
|
*/
|
||||||
static qboolean
|
static qboolean
|
||||||
SWimp_InitGraphics(qboolean fullscreen, int *pwidth, int *pheight)
|
SWimp_InitGraphics(int fullscreen, int *pwidth, int *pheight)
|
||||||
{
|
{
|
||||||
int flags;
|
int flags;
|
||||||
int curWidth, curHeight;
|
int curWidth, curHeight;
|
||||||
|
@ -2027,7 +2027,7 @@ RE_EndFrame (void)
|
||||||
** SWimp_SetMode
|
** SWimp_SetMode
|
||||||
*/
|
*/
|
||||||
static rserr_t
|
static rserr_t
|
||||||
SWimp_SetMode(int *pwidth, int *pheight, int mode, qboolean fullscreen )
|
SWimp_SetMode(int *pwidth, int *pheight, int mode, int fullscreen )
|
||||||
{
|
{
|
||||||
rserr_t retval = rserr_ok;
|
rserr_t retval = rserr_ok;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue