From c16e2a576a83a49c4b58dfd74354808d7b1641d9 Mon Sep 17 00:00:00 2001 From: gameblabla Date: Wed, 25 Aug 2021 13:25:51 +0200 Subject: [PATCH] Properly fix the extern to const void instead of just void. --- libpcsxcore/new_dynarec/backends/psx/emu_if.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, ...); -- 2.39.2