From: notaz Date: Fri, 9 Sep 2022 23:37:50 +0000 (+0300) Subject: fix build X-Git-Tag: r24l~393 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e884777a544661da5bad2413bdb3755b3c32ddb2;p=pcsx_rearmed.git fix build forgot to add 'extern' --- diff --git a/libpcsxcore/psxinterpreter.h b/libpcsxcore/psxinterpreter.h index 87c7a324..f8581b82 100644 --- a/libpcsxcore/psxinterpreter.h +++ b/libpcsxcore/psxinterpreter.h @@ -6,6 +6,6 @@ void execI(); void intApplyConfig(); void MTC0(psxRegisters *regs_, int reg, u32 val); void gteNULL(struct psxCP2Regs *regs); -void (*psxCP2[64])(struct psxCP2Regs *regs); +extern void (*psxCP2[64])(struct psxCP2Regs *regs); #endif // __PSXINTERPRETER_H__