display of numbers in Hex View is little endian?
jewe-1969 opened this issue · 0 comments
jewe-1969 commented
Hello,
first of all, thank you for this great and useful tool to visualize and edit NBT files! I'm using NBT as binary output format for the byte code of my scripting language, and NBT Explorer will be very useful to view and edit the binary.
I noticed a minor issue today: When viewing / editing an int array, the hex values are shown in reverse byte order (little endian). For example, the values '5' and '10' are shown as 05 00 00 00 0A 00 00 00.
Is this intentional? I think it should be displayed naturally, the way you read hexadecimal numbers: 00 00 00 05 00 00 00 0A.
Not a big issue, but I thought I should mention it. Keep up the good work!