mirror of
https://github.com/fabiangreffrath/woof.git
synced 2025-09-27 06:54:23 -04:00
fix various HOM columns that appeared on some resolutions (#1626)
* fix automap solid bg HOM * fix scaled window HOM on some resolutions * fix black column on the right side of status bar on some resolutions
This commit is contained in:
parent
ae388ef965
commit
11f958a17d
@ -599,7 +599,7 @@ static void AM_initScreenSize(void)
|
|||||||
if (automapoverlay && scaledviewheight == SCREENHEIGHT)
|
if (automapoverlay && scaledviewheight == SCREENHEIGHT)
|
||||||
f_h = video.height;
|
f_h = video.height;
|
||||||
else
|
else
|
||||||
f_h = video.height - V_ScaleY(ST_HEIGHT);
|
f_h = V_ScaleY(SCREENHEIGHT - ST_HEIGHT);
|
||||||
}
|
}
|
||||||
|
|
||||||
void AM_ResetScreenSize(void)
|
void AM_ResetScreenSize(void)
|
||||||
|
11
src/r_draw.c
11
src/r_draw.c
@ -43,12 +43,11 @@
|
|||||||
// and the total size == width*height*depth/8.,
|
// and the total size == width*height*depth/8.,
|
||||||
//
|
//
|
||||||
|
|
||||||
byte *viewimage;
|
|
||||||
int viewwidth;
|
|
||||||
int scaledviewwidth;
|
int scaledviewwidth;
|
||||||
int scaledviewheight; // killough 11/98
|
int scaledviewheight; // killough 11/98
|
||||||
int scaledviewx;
|
int scaledviewx;
|
||||||
int scaledviewy;
|
int scaledviewy;
|
||||||
|
int viewwidth;
|
||||||
int viewheight;
|
int viewheight;
|
||||||
int viewwindowx;
|
int viewwindowx;
|
||||||
int viewwindowy;
|
int viewwindowy;
|
||||||
@ -941,8 +940,6 @@ void R_VideoErase(int x, int y, int w, int h)
|
|||||||
|
|
||||||
void R_DrawViewBorder(void)
|
void R_DrawViewBorder(void)
|
||||||
{
|
{
|
||||||
int side;
|
|
||||||
|
|
||||||
if (scaledviewwidth == video.unscaledw || background_buffer == NULL)
|
if (scaledviewwidth == video.unscaledw || background_buffer == NULL)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@ -950,9 +947,9 @@ void R_DrawViewBorder(void)
|
|||||||
R_VideoErase(0, 0, video.unscaledw, scaledviewy);
|
R_VideoErase(0, 0, video.unscaledw, scaledviewy);
|
||||||
|
|
||||||
// copy sides
|
// copy sides
|
||||||
side = scaledviewx;
|
R_VideoErase(0, scaledviewy, scaledviewx, scaledviewheight);
|
||||||
R_VideoErase(0, scaledviewy, side, scaledviewheight);
|
R_VideoErase(scaledviewx + scaledviewwidth, scaledviewy, scaledviewx,
|
||||||
R_VideoErase(video.unscaledw - side, scaledviewy, side, scaledviewheight);
|
scaledviewheight);
|
||||||
|
|
||||||
// copy bottom
|
// copy bottom
|
||||||
R_VideoErase(0, scaledviewy + scaledviewheight, video.unscaledw, scaledviewy);
|
R_VideoErase(0, scaledviewy + scaledviewheight, video.unscaledw, scaledviewy);
|
||||||
|
@ -650,7 +650,7 @@ void R_ExecuteSetViewSize (void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// [crispy] forcefully initialize the status bar backing screen
|
// [crispy] forcefully initialize the status bar backing screen
|
||||||
ST_refreshBackground(true);
|
ST_refreshBackground();
|
||||||
|
|
||||||
pspr_interp = false;
|
pspr_interp = false;
|
||||||
}
|
}
|
||||||
|
@ -377,7 +377,7 @@ static void ST_DrawSolidBackground(int st_x)
|
|||||||
Z_ChangeTag (pal, PU_CACHE);
|
Z_ChangeTag (pal, PU_CACHE);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ST_refreshBackground(boolean force)
|
void ST_refreshBackground(void)
|
||||||
{
|
{
|
||||||
int st_x;
|
int st_x;
|
||||||
|
|
||||||
@ -441,24 +441,7 @@ void ST_refreshBackground(boolean force)
|
|||||||
|
|
||||||
// [crispy] copy entire video.unscaledw, to preserve the pattern to the left
|
// [crispy] copy entire video.unscaledw, to preserve the pattern to the left
|
||||||
// and right of the status bar in widescren mode
|
// and right of the status bar in widescren mode
|
||||||
if (!force)
|
V_CopyRect(0, 0, st_backing_screen, video.unscaledw, ST_HEIGHT, 0, ST_Y);
|
||||||
{
|
|
||||||
V_CopyRect(ST_X, 0, st_backing_screen,
|
|
||||||
video.unscaledw, ST_HEIGHT,
|
|
||||||
ST_X, ST_Y);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (video.deltaw > 0 && !st_firsttime)
|
|
||||||
{
|
|
||||||
V_CopyRect(0, 0, st_backing_screen,
|
|
||||||
video.deltaw, ST_HEIGHT,
|
|
||||||
0, ST_Y);
|
|
||||||
V_CopyRect(SCREENWIDTH + video.deltaw, 0, st_backing_screen,
|
|
||||||
video.deltaw, ST_HEIGHT,
|
|
||||||
SCREENWIDTH + video.deltaw, ST_Y);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Respond to keyboard input events,
|
// Respond to keyboard input events,
|
||||||
@ -1087,7 +1070,7 @@ void ST_Drawer(boolean fullscreen, boolean refresh)
|
|||||||
st_firsttime = false;
|
st_firsttime = false;
|
||||||
|
|
||||||
// draw status bar background to off-screen buff
|
// draw status bar background to off-screen buff
|
||||||
ST_refreshBackground(false);
|
ST_refreshBackground();
|
||||||
}
|
}
|
||||||
|
|
||||||
ST_drawWidgets();
|
ST_drawWidgets();
|
||||||
|
@ -56,7 +56,7 @@ void ST_Init(void);
|
|||||||
void ST_Warnings(void);
|
void ST_Warnings(void);
|
||||||
|
|
||||||
// [crispy] forcefully initialize the status bar backing screen
|
// [crispy] forcefully initialize the status bar backing screen
|
||||||
void ST_refreshBackground(boolean force);
|
void ST_refreshBackground(void);
|
||||||
|
|
||||||
void ST_InitRes(void);
|
void ST_InitRes(void);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user