mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-08 19:13:27 +02:00
[208278] endian cleanup
This commit is contained in:
parent
b72cf3c87a
commit
9026af2c92
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ public class DataPane extends AbstractPane
|
||||||
if(isSigned)
|
if(isSigned)
|
||||||
byteData[byteLen - 1] |= 128;
|
byteData[byteLen - 1] |= 128;
|
||||||
|
|
||||||
if(fRendering.isTargetLittleEndian() != bytes[0].isBigEndian())
|
if(!fRendering.isDisplayLittleEndian())
|
||||||
{
|
{
|
||||||
byte[] byteDataSwapped = new byte[byteData.length];
|
byte[] byteDataSwapped = new byte[byteData.length];
|
||||||
for(int i = 0; i < byteData.length; i++)
|
for(int i = 0; i < byteData.length; i++)
|
||||||
|
|
Loading…
Add table
Reference in a new issue