fruit-bat

Results 228 comments of fruit-bat

I've loaded up the latest build and it seems to be working ok for me. When you say 'freezing' can you still access the menus or has it locked up...

The 239 thing is looking for the last screen line. This increases the frame count which triggers the frame interrupt on the spectrum. It's a bit crude in terms of...

I'm guessing, but I suppose games that render a background then add the sprites afterwards suffer the worst.

Delay sounds interesting. Also might be worth trying reducing 239 and see what happens. Although you hinted you have already tried that.

That all sounds very good. Please pull request when you get time. Had another thought about the flickering. The unmoderated mode handles the audio input differently... The unmoderated CPU does...

Been having a play with this and it is quite mysterious. Having either moderator active causes flickering and does not seem related to having either the audio input/output enabled. I'll...

I think this is a problem with interrupt handling. The following in ZXSpectrum.h seems to sort the problem out... void interrupt() { z80_int(&_Z80, true); _Z80.int_line = false; } Not sure...

Thanks for the feedback. I have pushed another tweak to main.cpp to move where the frame timing starts, which helps in some cases. I tried raising EAR_BITS_PER_STEP but that caused...