core, fix typo
authorkub <derkub@gmail.com>
Mon, 8 Jul 2024 20:46:06 +0000 (22:46 +0200)
committerkub <derkub@gmail.com>
Mon, 8 Jul 2024 20:46:06 +0000 (22:46 +0200)
pico/pico_int.h

index 3d49573..4caa800 100644 (file)
@@ -203,7 +203,7 @@ extern struct DrZ80 drZ80;
 \r
 #define z80_resetCycles() { \\r
   Pico.t.z80c_cnt -= Pico.t.z80c_aim, Pico.t.z80c_aim = Pico.t.z80_scanline = 0; \\r
-  if (!Pico.m.z80Run | Pico.m.z80_reset) Pico.t.z80c_cnt = 0; \\r
+  if (!Pico.m.z80Run || Pico.m.z80_reset) Pico.t.z80c_cnt = 0; \\r
 }\r
 \r
 #define z80_cyclesDone() \\r