From d52be0a905af2f86fb9bfcbb46020fef3893a3e8 Mon Sep 17 00:00:00 2001 From: Logan McNaughton <848146+loganmc10@users.noreply.github.com> Date: Tue, 2 Aug 2022 13:59:11 -0600 Subject: [PATCH] update core --- mupen64plus-core/src/device/rcp/rsp/rsp_core.c | 1 - mupen64plus-core/src/main/main.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/mupen64plus-core/src/device/rcp/rsp/rsp_core.c b/mupen64plus-core/src/device/rcp/rsp/rsp_core.c index 0002dc4..9711688 100644 --- a/mupen64plus-core/src/device/rcp/rsp/rsp_core.c +++ b/mupen64plus-core/src/device/rcp/rsp/rsp_core.c @@ -170,7 +170,6 @@ static void update_sp_status(struct rsp_core* sp, uint32_t w) if (w & 0x200) sp->regs[SP_STATUS_REG] &= ~SP_STATUS_SIG0; if (w & 0x400) sp->regs[SP_STATUS_REG] |= SP_STATUS_SIG0; - /* clear / set signal 1 */ if (w & 0x800) sp->regs[SP_STATUS_REG] &= ~SP_STATUS_SIG1; if (w & 0x1000) sp->regs[SP_STATUS_REG] |= SP_STATUS_SIG1; diff --git a/mupen64plus-core/src/main/main.c b/mupen64plus-core/src/main/main.c index 170434d..4abbf34 100644 --- a/mupen64plus-core/src/main/main.c +++ b/mupen64plus-core/src/main/main.c @@ -1527,7 +1527,7 @@ m64p_error main_run(void) uint32_t count_per_op; //UNUSED uint32_t count_per_op_denom_pot; //UNUSED - uint32_t rsp_delay_time; + uint32_t rsp_delay_time; //UNUSED int32_t si_dma_duration; //UNUSED //During netplay, player 1 is the source of truth for these settings netplay_sync_settings(&count_per_op, &count_per_op_denom_pot, &disable_extra_mem, &si_dma_duration, &emumode, &no_compiled_jump, &rsp_delay_time);