From fddb790c704081cf9f0214a75f6aa5f3a2edd18e Mon Sep 17 00:00:00 2001 From: WerWolv Date: Fri, 16 Apr 2021 19:44:22 +0200 Subject: [PATCH] fix: Pasting values properly works now --- source/views/view_hexeditor.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/views/view_hexeditor.cpp b/source/views/view_hexeditor.cpp index f42f60494..8457d3864 100644 --- a/source/views/view_hexeditor.cpp +++ b/source/views/view_hexeditor.cpp @@ -693,6 +693,8 @@ namespace hex { if (c >= '0' && c <= '9') byte |= (c - '0'); else if (c >= 'a' && c <= 'f') byte |= (c - 'a') + 0xA; else if (c >= 'A' && c <= 'F') byte |= (c - 'A') + 0xA; + + stringIndex++; } }