From: kub Date: Mon, 8 Jul 2024 20:46:06 +0000 (+0200) Subject: core, fix typo X-Git-Tag: v2.00~11 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=977e5db898cd5c1980db66953dbcbce8a1e1c7d0;p=picodrive.git core, fix typo --- diff --git a/pico/pico_int.h b/pico/pico_int.h index 3d495739..4caa800d 100644 --- a/pico/pico_int.h +++ b/pico/pico_int.h @@ -203,7 +203,7 @@ extern struct DrZ80 drZ80; #define z80_resetCycles() { \ Pico.t.z80c_cnt -= Pico.t.z80c_aim, Pico.t.z80c_aim = Pico.t.z80_scanline = 0; \ - if (!Pico.m.z80Run | Pico.m.z80_reset) Pico.t.z80c_cnt = 0; \ + if (!Pico.m.z80Run || Pico.m.z80_reset) Pico.t.z80c_cnt = 0; \ } #define z80_cyclesDone() \