* modified task window to define what the bracketed numbers mean.

* modified main page banner to use actual deck names and not the filename when
   displaying stats information.
This commit is contained in:
techdragon.nguyen@gmail.com
2010-11-29 12:45:48 +00:00
parent 8de00561d5
commit 4badcc374f
3 changed files with 17 additions and 9 deletions

View File

@@ -311,8 +311,9 @@ void DeckMenu::updateScroller()
for (vector<Task*>::iterator it = taskList.tasks.begin(); it != taskList.tasks.end(); it++)
{
ostringstream taskDescription;
taskDescription << "[ " << setw(4) << (*it)->getReward() << " / " << (*it)->getExpiration() << " ] "
<< (*it)->getDesc() << endl << endl;
taskDescription << "Credits: " << setw(4) << (*it)->getReward() << " / "
<< "Days Left: " << (*it)->getExpiration() << endl
<< (*it)->getDesc() << endl << endl;
mScroller->Add(taskDescription.str());
}