Subversion Repositories spk

Rev

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

Rev 191 Rev 197
Line 33... Line 33...
33
				p = new CPackages;
33
				p = new CPackages;
34
				p->startup(".", ".", ".", ".");
34
				p->startup(".", ".", ".", ".");
35
				m_pPackages = p;
35
				m_pPackages = p;
36
			}
36
			}
37
 
37
 
38
			for ( int i = 0; i < p->GetGameExe()->GetNumGames(); i++ )
38
			for ( int i = 0; i < p->GetGameExe()->numGames(); i++ )
39
			{
39
			{
40
				SGameExe *gameExe = p->GetGameExe()->GetGame(i);
40
				SGameExe *gameExe = p->GetGameExe()->game(i);
41
				this->comboBox1->Items->Add(_US(gameExe->sName));
41
				this->comboBox1->Items->Add(_US(gameExe->sName));
42
			}
42
			}
43
 
43
 
44
			this->comboBox1->SelectedIndex = this->comboBox1->Items->Count - 1;
44
			this->comboBox1->SelectedIndex = this->comboBox1->Items->Count - 1;
45
	
45