mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-24 01:09:51 +00:00
Cleanups
This commit is contained in:
parent
ef6c73c102
commit
88808fd3b1
@ -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))))
|
||||
|
@ -78,7 +78,6 @@ class MDFN_Surface //typedef struct
|
||||
|
||||
~MDFN_Surface();
|
||||
|
||||
uint16 *pixels16;
|
||||
uint32 *pixels;
|
||||
|
||||
// w, h, and pitch32 should always be > 0
|
||||
|
Loading…
Reference in New Issue
Block a user