x64Emitter: Fix missing-declarations warning

This commit is contained in:
Joshua Vandaële 2025-10-29 10:35:16 +01:00
parent 33152740d0
commit 2383e68fd8
No known key found for this signature in database
GPG Key ID: 6BB95AF71EB0F406

View File

@ -1862,7 +1862,7 @@ void XEmitter::WriteVEXOp4(u8 opPrefix, u16 op, X64Reg regOp1, X64Reg regOp2, co
Write8((u8)regOp3 << 4);
}
void CheckAVXSupport()
static void CheckAVXSupport()
{
if (!cpu_info.bAVX)
PanicAlertFmt("Trying to use AVX on a system that doesn't support it. Bad programmer.");