Skip to content

Commit

Permalink
core, fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
irixxxx committed Jul 8, 2024
1 parent 73411ac commit 977e5db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pico/pico_int.h
Original file line number Diff line number Diff line change
Expand Up @@ -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() \
Expand Down

0 comments on commit 977e5db

Please sign in to comment.