mirror of https://github.com/PCSX2/pcsx2.git
core: pointers are 8B on 64 bytes
This commit is contained in:
parent
d623453451
commit
8c3798e96b
|
@ -242,4 +242,8 @@ static void recLUT_SetPage(uptr reclut[0x10000], uptr hwlut[0x10000],
|
|||
hwlut[page] = 0u - (pagebase << 16);
|
||||
}
|
||||
|
||||
#ifdef __x86_64__
|
||||
static_assert( sizeof(BASEBLOCK) == 8, "BASEBLOCK is not 8 bytes" );
|
||||
#else
|
||||
static_assert( sizeof(BASEBLOCK) == 4, "BASEBLOCK is not 4 bytes" );
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue