Forget DoState.

This commit is contained in:
shenweip 2013-09-27 23:10:31 +08:00
parent a883fbd155
commit dbb16517d2
2 changed files with 9 additions and 2 deletions

View File

@ -160,4 +160,11 @@ void PSPGamedataInstallDialog::DoState(PointerWrap &p) {
PSPDialog::DoState(p);
p.Do(request);
p.Do(paramAddr);
p.Do(inFileNames);
p.Do(numFiles);
p.Do(readFiles);
p.Do(allFilesSize);
p.Do(allReadSize);
p.Do(progressValue);
}

View File

@ -56,8 +56,8 @@ private:
std::vector<std::string> inFileNames;
int numFiles;
int readFiles;
u64 allFilesSize; // use this tp calculate progress value.
u64 allReadSize; // use this tp calculate progress value.
u64 allFilesSize; // use this to calculate progress value.
u64 allReadSize; // use this to calculate progress value.
int progressValue;
void updateProgress();