Fix debugger only displaying 16 bits of 64-bit integers in the memory inspector

Signed-off-by: Oliver Tappe <[email protected]>
This commit is contained in:
Zhuowei Zhang
2014-08-08 14:09:13 +02:00
committed by Oliver Tappe
parent 178be2a6d5
commit 2ba49c8804
@@ -624,7 +624,7 @@ MemoryView::_GetNextHexBlock(char* buffer, int32 bufferSize,
}
case HexMode64BitInt:
{
uint64 data = *((const uint16*)address);
uint64 data = *((const uint64*)address);
switch(fCurrentEndianMode)
{
case EndianModeBigEndian: