Merge pull request #2618 from Sonicadvance1/corestate_mingw

CoreState: Fix SynchronousFaultData padding type
This commit is contained in:
Mai 2023-04-16 03:26:32 -04:00 committed by GitHub
commit 68599bf124
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -225,7 +225,7 @@ namespace FEXCore::Core {
uint8_t TrapNo;
uint8_t si_code;
uint16_t err_code;
uint32_t _pad : 16;
uint16_t _pad : 16;
} SynchronousFaultData;
InternalThreadState* Thread;