mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Uninitialized variable fix
This commit is contained in:
parent
227fed9e6a
commit
d50233526c
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ class GameInfo {
|
|||
public:
|
||||
GameInfo()
|
||||
: fileType(FILETYPE_UNKNOWN), paramSFOLoaded(false), iconTexture(NULL), pic0Texture(NULL), pic1Texture(NULL),
|
||||
wantBG(false), gameSize(0), saveDataSize(0), installDataSize(0) {}
|
||||
wantBG(false), gameSize(0), saveDataSize(0), installDataSize(0), disc_total(0), disc_number(0) {}
|
||||
|
||||
bool DeleteGame(); // Better be sure what you're doing when calling this.
|
||||
bool DeleteAllSaveData();
|
||||
|
|
Loading…
Add table
Reference in a new issue