From: Ash Logan Date: Sun, 29 May 2022 12:53:34 +0000 (+1000) Subject: libpcsxcore: Use the same type for next_interrupt everywhere X-Git-Tag: r24~254 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=commitdiff_plain;h=45a1e89f9b213953b102c6217c97a2f8828f1a57 libpcsxcore: Use the same type for next_interrupt everywhere u32 is long unsigned int on some platforms --- diff --git a/libpcsxcore/new_dynarec/emu_if.c b/libpcsxcore/new_dynarec/emu_if.c index 50819e4b..f7135872 100644 --- a/libpcsxcore/new_dynarec/emu_if.c +++ b/libpcsxcore/new_dynarec/emu_if.c @@ -326,7 +326,7 @@ R3000Acpu psxRec = { unsigned int address; int pending_exception, stop; -unsigned int next_interupt; +u32 next_interupt; int new_dynarec_did_compile; int cycle_multiplier_old; int new_dynarec_hacks_pergame;