Skip to content

Commit

Permalink
Ponies were getting added to autorun in a reverse order...
Browse files Browse the repository at this point in the history
...so when they started at system launch the menu option for autorun remained unchecked (VerifyAutorun returned false).
  • Loading branch information
Svetomech committed Mar 1, 2016
1 parent d2286f6 commit 576812d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PonyApp/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public static void StopPony(Pony pone) {
public static string ToPoniesString(this List<Pony> PonyList) {
string ponies = String.Empty;

for (int i = Main.PonyList.Count - 1; i >= 0; i--)
for (int i = 0; i < Main.PonyList.Count; i++)
{
ponies += $"\"{Main.PonyList[i].Name}\" ";
}
Expand Down

0 comments on commit 576812d

Please sign in to comment.