From a4bae15050fbcc08b56f864dc7a3bddd23507dcb Mon Sep 17 00:00:00 2001 From: Silent Date: Sun, 28 Jan 2018 18:15:53 +0100 Subject: [PATCH] Compilation fix --- SilentPatchSA/SilentPatchSA.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SilentPatchSA/SilentPatchSA.cpp b/SilentPatchSA/SilentPatchSA.cpp index b9b3ef0..a7041a4 100644 --- a/SilentPatchSA/SilentPatchSA.cpp +++ b/SilentPatchSA/SilentPatchSA.cpp @@ -1358,7 +1358,7 @@ namespace Credits constexpr char xvChar(const char ch) { - constexpr uint8_t xv = __LINE__ & 0xFF; + constexpr uint8_t xv = 0x27; return ch ^ xv; }