From 162cc52c6b3eca3b7ca836802d3091d91c7f2b38 Mon Sep 17 00:00:00 2001 From: nastys <@> Date: Wed, 29 Sep 2021 19:29:03 +0200 Subject: [PATCH] 2.6.4: forgot to move termination byte (oops) --- source-code/source/plugins/Patches/PatchApplier710.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source-code/source/plugins/Patches/PatchApplier710.h b/source-code/source/plugins/Patches/PatchApplier710.h index 9c12472..4825d89 100644 --- a/source-code/source/plugins/Patches/PatchApplier710.h +++ b/source-code/source/plugins/Patches/PatchApplier710.h @@ -166,8 +166,9 @@ class PatchApplier710 : public PatchApplier { if (nPDLoaderText && !nHideFreeplay) { - InjectCode((void*)0x00000001409F61F0, { 0x50, 0x44, 0x20, 0x4C, 0x6F, 0x61, 0x64, 0x65, 0x72, 0x20, 0x00, - 0x20, 0x32, 0x2E, 0x36, 0x2E, 0x34}); + InjectCode((void*)0x00000001409F61F0, { 0x50, 0x44, 0x20, 0x4C, 0x6F, 0x61, 0x64, 0x65, 0x72, + 0x20, 0x32, 0x2E, 0x36, 0x2E, 0x34, + 0x00}); printf("[Patches] Show PD Loader text\n"); } }