1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-07 18:43:32 +02:00

[208278] endian cleanup

This commit is contained in:
Ted Williams 2007-11-02 01:06:25 +00:00
parent b72cf3c87a
commit 9026af2c92

View file

@ -75,7 +75,7 @@ public class DataPane extends AbstractPane
if(isSigned)
byteData[byteLen - 1] |= 128;
if(fRendering.isTargetLittleEndian() != bytes[0].isBigEndian())
if(!fRendering.isDisplayLittleEndian())
{
byte[] byteDataSwapped = new byte[byteData.length];
for(int i = 0; i < byteData.length; i++)