Merge pull request #402 from piotrwalkusz1/dev

Fix #395 issue and fix read function
dev-mp
krzys_h 2014-11-15 16:45:52 +01:00
commit d11a2f37f9
1 changed files with 6 additions and 0 deletions

View File

@ -6164,6 +6164,12 @@ bool CMainDialog::ReadGamerInfo()
while(!file.eof())
{
std::getline(file, line);
if(line == "")
{
break;
}
sscanf(line.c_str(), "Chapter %d: Scene %d: numTry=%d passed=%d\n",
&chap, &i, &numTry, &passed);