Skip to content

Commit

Permalink
TestApp now works in 1.23 and fixed crash
Browse files Browse the repository at this point in the history
  • Loading branch information
erfg12 committed Feb 20, 2022
1 parent 92ed49b commit 8628ab6
Show file tree
Hide file tree
Showing 3 changed files with 110 additions and 145 deletions.
2 changes: 1 addition & 1 deletion Test/TestApp/MemoryTestApp/Classes/Processing.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public void ProcUIUpdate()
public void GetModuleList()
{
ModuleList.Items.Clear();
foreach (KeyValuePair<string, IntPtr> kvp in m.mProc.Modules) // iterate through process module list
foreach (KeyValuePair<string, IntPtr> kvp in m.mProc.Process.Modules) // iterate through process module list
{
string[] arr = new string[4];
ListViewItem itm;
Expand Down
Loading

0 comments on commit 8628ab6

Please sign in to comment.