Skip to content

Commit

Permalink
fixup! Automatic adding separator line to .cleo.log
Browse files Browse the repository at this point in the history
  • Loading branch information
MiranDMC committed Sep 21, 2024
1 parent 11bba3f commit ff21c59
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 2 additions & 3 deletions CLEO5.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,8 @@
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
</ClCompile>
<ClCompile Include="third-party\plugin-sdk\plugin_sa\game_sa\CTimer.cpp">
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
<ClCompile Include="$(PLUGIN_SDK_DIR)\plugin_sa\game_sa\CTimer.cpp">
<PrecompiledHeader>NotUsing</PrecompiledHeader>
</ClCompile>
<ClCompile Include="third-party\simdjson\simdjson.cpp">
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
Expand Down
3 changes: 2 additions & 1 deletion source/CCodeInjector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace CLEO
if (!strcmp((char*)pSection->Name, ".text") || !strcmp((char*)pSection->Name, ".rdata"))
{
DWORD dwPhysSize = (pSection->Misc.VirtualSize + 4095) & ~4095;
TRACE("Unprotecting memory region '%s': 0x%08X (size: 0x%08X)",
TRACE(" Unprotecting memory region '%s': 0x%08X (size: 0x%08X)",
pSection->Name,
(DWORD)pSection->VirtualAddress,
(DWORD)dwPhysSize
Expand All @@ -35,6 +35,7 @@ namespace CLEO
SHOW_ERROR("Virtual protect error");
}
}
TRACE(""); // separator

bAccessOpen = true;
}
Expand Down

0 comments on commit ff21c59

Please sign in to comment.