mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix missing Pause Screen BG if the game is exited once and then replayed.
This commit is contained in:
parent
3b07090682
commit
2a6b35f3ad
2 changed files with 2 additions and 1 deletions
|
@ -286,6 +286,7 @@ void GameInfoCache::FlushBGs() {
|
||||||
delete iter->second->pic1Texture;
|
delete iter->second->pic1Texture;
|
||||||
iter->second->pic1Texture = 0;
|
iter->second->pic1Texture = 0;
|
||||||
}
|
}
|
||||||
|
iter->second->wantBG = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
|
|
||||||
class GameInfo {
|
class GameInfo {
|
||||||
public:
|
public:
|
||||||
GameInfo() : fileType(FILETYPE_UNKNOWN), iconTexture(NULL), pic0Texture(NULL), pic1Texture(NULL) {}
|
GameInfo() : fileType(FILETYPE_UNKNOWN), iconTexture(NULL), pic0Texture(NULL), pic1Texture(NULL), wantBG(false) {}
|
||||||
|
|
||||||
bool DeleteGame(); // Better be sure what you're doing when calling this.
|
bool DeleteGame(); // Better be sure what you're doing when calling this.
|
||||||
bool DeleteAllSaveData();
|
bool DeleteAllSaveData();
|
||||||
|
|
Loading…
Add table
Reference in a new issue