Skip to content

Commit

Permalink
This is what happens when you don't read the code you're modifying.
Browse files Browse the repository at this point in the history
  • Loading branch information
MainMemory committed Jan 18, 2016
1 parent c159ad5 commit 32862db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SA2ModManager/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ private void Save()
IniFile.Serialize(loaderini, loaderinipath);
List<Code> codes = new List<Code>();
List<Code> patches = new List<Code>();
foreach (Code item in codesCheckedListBox.CheckedIndices.OfType<int>().Select(a => codes[a]))
foreach (Code item in codesCheckedListBox.CheckedIndices.OfType<int>().Select(a => this.codes[a]))
if (item.Patch)
patches.Add(item);
else
Expand Down

0 comments on commit 32862db

Please sign in to comment.