Subversion Repositories spk

Rev

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

Rev 225 Rev 226
Line 51... Line 51...
51
	if ( m_iStatus <= IMPORTSHIP_SCENE )
51
	if ( m_iStatus <= IMPORTSHIP_SCENE )
52
	{
52
	{
53
		// make sure the id is correct
53
		// make sure the id is correct
54
		Utils::WString data = _WS(m_sID);
54
		Utils::WString data = _WS(m_sID);
55
		data.removeChar('\r');
55
		data.removeChar('\r');
56
		while(data.right(1) == ";")
56
		while(data.right(1) == L";")
57
			data.truncate(-1);
57
			data.truncate(-1);
58
 
58
 
59
		m_bError = !m_pShip->startExtractShip(m_pVfs, data, m_pInfo);
59
		m_bError = !m_pShip->startExtractShip(m_pVfs, data, m_pInfo);
60
		if ( m_bError ) m_sError = "Unable to extract scene file";
60
		if ( m_bError ) m_sError = "Unable to extract scene file";
61
 
61