Fix two small warnings
This commit is contained in:
parent
790f2d2488
commit
7491793989
2 changed files with 5 additions and 4 deletions
|
|
@ -2563,6 +2563,7 @@ void K_SpawnEggMineBumpEffect(mobj_t *mo)
|
|||
|
||||
void K_DoEggMineStrip(mobj_t *tmo, mobj_t *inflictor, mobj_t *source)
|
||||
{
|
||||
(void)source;
|
||||
if (inflictor && (inflictor->type == MT_LANDMINE || inflictor->type == MT_EGGMINE))
|
||||
{
|
||||
if (tmo->player)
|
||||
|
|
|
|||
|
|
@ -415,11 +415,11 @@ void Y_IntermissionDrawer(void)
|
|||
if (intertype == int_none || rendermode == render_none)
|
||||
return;
|
||||
|
||||
INT32 w = (vid.width / vid.dupx);
|
||||
INT32 h = (vid.height / vid.dupy);
|
||||
//INT32 w = (vid.width / vid.dupx);
|
||||
//INT32 h = (vid.height / vid.dupy);
|
||||
|
||||
const INT32 vidxdiff = (w - BASEVIDWIDTH) / 2;
|
||||
const INT32 vidydiff = (h - BASEVIDHEIGHT) / 2;
|
||||
//const INT32 vidxdiff = (w - BASEVIDWIDTH) / 2;
|
||||
//const INT32 vidydiff = (h - BASEVIDHEIGHT) / 2;
|
||||
|
||||
if (!useinterpic && y_screenbuffer == NULL
|
||||
#ifdef HWRENDER
|
||||
|
|
|
|||
Loading…
Reference in a new issue