fix: Pasting values properly works now

This commit is contained in:
WerWolv 2021-04-16 19:44:22 +02:00
parent 771bb22962
commit fddb790c70
1 changed files with 2 additions and 0 deletions

View File

@ -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++;
}
}