Merge pull request #1753 from shygoo/fix-dmalogsig

[Debugger] Fix DMA log signature byte order
This commit is contained in:
zilmar 2020-05-20 06:28:50 +09:30 committed by GitHub
commit dd80e7cad1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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