Subversion Repositories spk

Rev

Rev 202 | Rev 245 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 202 Rev 233
Line 144... Line 144...
144
 
144
 
145
	int iExe = this->addExe(exe);
145
	int iExe = this->addExe(exe);
146
 
146
 
147
	SGameExe *sExe = m_lExe[iExe];
147
	SGameExe *sExe = m_lExe[iExe];
148
	sExe->iMaxPatch = line.token(L":", 2);
148
	sExe->iMaxPatch = line.token(L":", 2);
-
 
149
	sExe->iAudioStream = line.token(L":", 3).toInt();
149
	sExe->iFlags = this->parseFlags(line.token(L":", 3));
150
	sExe->iFlags = this->parseFlags(line.token(L":", 4));
150
	sExe->sModKey = line.token(L":", 4);
151
	sExe->sModKey = line.token(L":", 5);
151
	sExe->iTextNum = iTextNum;
152
	sExe->iTextNum = iTextNum;
152
 
153
 
153
	// get the name
154
	// get the name
154
	Utils::WString gameName = line.token(L":", 5);
155
	Utils::WString gameName = line.token(L":", 6);
155
	this->_setExeName(&sExe->sName, &sExe->iName, gameName);
156
	this->_setExeName(&sExe->sName, &sExe->iName, gameName);
156
 
157
 
157
	// get mydocs
158
	// get mydocs
158
	sExe->sMyDoc = line.token(L":", 6);
159
	sExe->sMyDoc = line.token(L":", 7);
159
 
160
 
160
	// now get the versions
161
	// now get the versions
161
	int pos = EXE_VERSIONPOS;
162
	int pos = EXE_VERSIONPOS;
162
	int namestart = EXE_VERSION_NAMESTART;
163
	int namestart = EXE_VERSION_NAMESTART;
163
	int sizestart = EXE_VERSION_SIZESTART;
164
	int sizestart = EXE_VERSION_SIZESTART;