This commit is contained in:
twinaphex 2015-07-30 07:54:57 +02:00
parent ef6c73c102
commit 88808fd3b1
2 changed files with 0 additions and 3 deletions

View File

@ -45,7 +45,6 @@ MDFN_Surface::MDFN_Surface()
memset(&format, 0, sizeof(format));
pixels = NULL;
pixels16 = NULL;
pitchinpix = 0;
w = 0;
h = 0;
@ -63,7 +62,6 @@ void MDFN_Surface::Init(void *const p_pixels, const uint32 p_width, const uint32
format = nf;
pixels16 = NULL;
pixels = NULL;
if(!(rpix = calloc(1, p_pitchinpix * p_height * (nf.bpp / 8))))

View File

@ -78,7 +78,6 @@ class MDFN_Surface //typedef struct
~MDFN_Surface();
uint16 *pixels16;
uint32 *pixels;
// w, h, and pitch32 should always be > 0