Skip to content

Commit d475bf5

Browse files
committed
remove debug log
1 parent 7511195 commit d475bf5

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

MemoryEditLib2/MemoryEditLib2.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<Authors>LEaN</Authors>
1010
<Description>Read, Pattern Search, Edit Process Memory</Description>
1111
<Copyright>LEaN</Copyright>
12-
<Version>1.2.1</Version>
12+
<Version>1.2.2</Version>
1313
<RepositoryUrl>https://github.com/leanleon93/MemoryEditLib2</RepositoryUrl>
1414
<RepositoryType>git</RepositoryType>
1515
<NeutralLanguage>en</NeutralLanguage>

MemoryEditLib2/Windows/WindowsPatternFinder.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,6 @@ public IntPtr GetAddressForPatternInModuleWithWildcards(string moduleName, strin
227227
Kernel32Wrapper.ReadProcessMemory(_processHandle, (nint)(mod.BaseAddress + offsetAddress), buffer, buffer.Length, out nint NumberOfBytesRead);
228228
if (NumberOfBytesRead == IntPtr.Zero)
229229
return IntPtr.Zero;
230-
File.WriteAllBytes(@"out.bin", buffer);
231230
if ((uint)NumberOfBytesRead > 0)
232231
{
233232
return (nint)ScanLogic((nint)(mod.BaseAddress + offsetAddress), buffer, convertedByteArray);

0 commit comments

Comments
 (0)