From: gameblabla Date: Wed, 25 Aug 2021 11:25:51 +0000 (+0200) Subject: Properly fix the extern to const void instead of just void. X-Git-Tag: r24l~563 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;ds=sidebyside;h=c16e2a576a83a49c4b58dfd74354808d7b1641d9;p=pcsx_rearmed.git Properly fix the extern to const void instead of just void. --- diff --git a/libpcsxcore/new_dynarec/backends/psx/emu_if.h b/libpcsxcore/new_dynarec/backends/psx/emu_if.h index 64f6c5a5..e5396ef3 100644 --- a/libpcsxcore/new_dynarec/backends/psx/emu_if.h +++ b/libpcsxcore/new_dynarec/backends/psx/emu_if.h @@ -100,7 +100,7 @@ void pcsx_mtc0(u32 reg, u32 val); void pcsx_mtc0_ds(u32 reg, u32 val); /* misc */ -extern void (*psxHLEt[8])(); +extern const void (*psxHLEt[8])(); extern void SysPrintf(const char *fmt, ...);