Skip to content

Commit

Permalink
Fixed DevPub bug saving the game count with name.
Browse files Browse the repository at this point in the history
  • Loading branch information
EnemyWithin committed Feb 20, 2016
1 parent 7382f93 commit 556932a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Depressurizer/AutoCat/AutoCatConfigPanel_DevPub.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public override void SaveToAutoCat(AutoCat autocat)
{
foreach (ListViewItem item in clbDevelopersSelected.CheckedItems)
{
ac.Developers.Add(item.Text);
ac.Developers.Add(item.Tag.ToString());
}
}

Expand All @@ -105,7 +105,7 @@ public override void SaveToAutoCat(AutoCat autocat)
{
foreach (ListViewItem item in clbPublishersSelected.CheckedItems)
{
ac.Publishers.Add(item.Text);
ac.Publishers.Add(item.Tag.ToString());
}
}
}
Expand Down

0 comments on commit 556932a

Please sign in to comment.