Removed leftovers from QZDoom

This commit is contained in:
Magnus Norddahl 2016-12-17 22:57:57 +01:00 committed by Christoph Oelckers
parent 9ac7a07be6
commit 2fea46a719
2 changed files with 3 additions and 4 deletions

View File

@ -54,9 +54,8 @@
CVAR(Bool, r_fogboundary, true, 0)
CVAR(Bool, r_drawmirrors, true, 0)
EXTERN_CVAR(Bool, r_fullbrightignoresectorcolor);
EXTERN_CVAR(Bool, r_mipmap)
namespace swrenderer
namespace swrenderer
{
using namespace drawerargs;

View File

@ -3241,12 +3241,12 @@ void R_CheckOffscreenBuffer(int width, int height, bool spansonly)
{
if (OffscreenColorBuffer == NULL)
{
OffscreenColorBuffer = new BYTE[width * height * 4];
OffscreenColorBuffer = new BYTE[width * height];
}
else if (OffscreenBufferWidth != width || OffscreenBufferHeight != height)
{
delete[] OffscreenColorBuffer;
OffscreenColorBuffer = new BYTE[width * height * 4];
OffscreenColorBuffer = new BYTE[width * height];
}
}
OffscreenBufferWidth = width;