1
0
mirror of synced 2025-01-19 01:24:15 +01:00

fix: Copy as... -> ASCII Art inserting too much whitespace

This commit is contained in:
WerWolv 2022-09-13 22:02:57 +02:00
parent 20a2331504
commit d1468984e7

View File

@ -106,8 +106,10 @@ namespace hex::plugin::builtin {
address++;
}
if ((address % 0x10) != 0x00)
for (u32 i = 0; i < (0x10 - (address % 0x10)); i++)
result += " ";
result += hex::format(" {}", asciiRow);
return result;