cleanup screenshot memory management.

This commit is contained in:
Daryl Borth 2019-03-02 16:38:08 -07:00
parent 19f8899759
commit fac58f9986
4 changed files with 13 additions and 8 deletions

View File

@ -1527,8 +1527,7 @@ static int MenuGame()
delete gameScreenImg;
delete gameScreen;
gameScreen = NULL;
free(gameScreenPng);
gameScreenPng = NULL;
ClearScreenshot();
if(GCSettings.AutoloadGame) {
ExitApp();
}
@ -4890,11 +4889,7 @@ MainMenu (int menu)
if(gameScreen)
delete gameScreen;
if(gameScreenPng)
{
free(gameScreenPng);
gameScreenPng = NULL;
}
ClearScreenshot();
// wait for keys to be depressed
while(MenuRequested())

View File

@ -389,7 +389,6 @@ int main(int argc, char *argv[])
savebuffer = (unsigned char *)malloc(SAVEBUFFERSIZE);
browserList = (BROWSERENTRY *)malloc(sizeof(BROWSERENTRY)*MAX_BROWSER_SIZE);
#endif
gameScreenPng = (u8 *)malloc(512*1024);
InitGUIThreads();
bool autoboot = false;

View File

@ -757,6 +757,16 @@ void TakeScreenshot()
}
}
void ClearScreenshot()
{
if(gameScreenPng)
{
gameScreenPngSize = 0;
free(gameScreenPng);
gameScreenPng = NULL;
}
}
/****************************************************************************
* ResetVideo_Menu
*

View File

@ -21,6 +21,7 @@ void StopGX();
void ResetVideo_Emu();
void ResetVideo_Menu();
void TakeScreenshot();
void ClearScreenshot();
void Menu_Render();
void Menu_DrawImg(f32 xpos, f32 ypos, u16 width, u16 height, u8 data[], f32 degrees, f32 scaleX, f32 scaleY, u8 alphaF );
void Menu_DrawRectangle(f32 x, f32 y, f32 width, f32 height, GXColor color, u8 filled);