mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-02 13:37:42 -05:00
fix: Pasting values properly works now
This commit is contained in:
@@ -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++;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user