X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Pico%2FPico.c;h=9ad226d66fe974910e8d3562bb79dca3055ce04e;hb=b542be4686241c9e0722ff8e452980f9ac2b4d7c;hp=bc764b6b89c7aeb00105eabcb10c21d5b3ad9010;hpb=8022f53da61b8e70420a3bac97250119bbe26457;p=picodrive.git diff --git a/Pico/Pico.c b/Pico/Pico.c index bc764b6..9ad226d 100644 --- a/Pico/Pico.c +++ b/Pico/Pico.c @@ -297,10 +297,10 @@ static void PicoRunZ80Simple(int line_from, int line_to) if ((line == 224 || line == line_sample) && PsndOut) getSamples(line); if (line == 32 && PsndOut) emustatus &= ~1; if (line >= line_from_r && line < line_to_r) - z80_run(228); + z80_run_nr(228); } } else if (line_to_r-line_from_r > 0) { - z80_run(228*(line_to_r-line_from_r)); + z80_run_nr(228*(line_to_r-line_from_r)); // samples will be taken by caller } }