[Debugger] Fix DMA log signature byte order
This commit is contained in:
parent
f6434d1870
commit
7b005f709f
|
@ -108,7 +108,7 @@ void CDebugDMALogView::RefreshList()
|
|||
|
||||
if (lpEntry->romAddr < g_Rom->GetRomSize())
|
||||
{
|
||||
sig.u32 = *(uint32_t*)&rom[lpEntry->romAddr];
|
||||
sig.u32 = _byteswap_ulong(*(uint32_t*)&rom[lpEntry->romAddr]);
|
||||
}
|
||||
|
||||
// Todo checkbox to display all in hex
|
||||
|
|
Loading…
Reference in New Issue