1
0
mirror of synced 2025-02-20 04:01:01 +01:00

fix: Pasting values properly works now

This commit is contained in:
WerWolv 2021-04-16 19:44:22 +02:00
parent 771bb22962
commit fddb790c70

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