mirror of https://github.com/mgba-emu/mgba.git
Test: Don't rely on core for frames elapsed
This commit is contained in:
parent
9b0a5e566e
commit
1731d4f975
1
CHANGES
1
CHANGES
|
@ -49,6 +49,7 @@ Bugfixes:
|
||||||
- GBA Hardware: Fix crash if a savestate lies about game hardware
|
- GBA Hardware: Fix crash if a savestate lies about game hardware
|
||||||
- Test: Fix crash when fuzzing fails to load a file
|
- Test: Fix crash when fuzzing fails to load a file
|
||||||
- GBA: Fix multiboot loading resulting in too small WRAM
|
- GBA: Fix multiboot loading resulting in too small WRAM
|
||||||
|
- Test: Don't rely on core for frames elapsed
|
||||||
Misc:
|
Misc:
|
||||||
- SDL: Remove scancode key input
|
- SDL: Remove scancode key input
|
||||||
- GBA Video: Clean up unused timers
|
- GBA Video: Clean up unused timers
|
||||||
|
|
|
@ -176,9 +176,10 @@ loadError:
|
||||||
static void _fuzzRunloop(struct mCore* core, int frames) {
|
static void _fuzzRunloop(struct mCore* core, int frames) {
|
||||||
do {
|
do {
|
||||||
core->runFrame(core);
|
core->runFrame(core);
|
||||||
|
--frames;
|
||||||
blip_clear(core->getAudioChannel(core, 0));
|
blip_clear(core->getAudioChannel(core, 0));
|
||||||
blip_clear(core->getAudioChannel(core, 1));
|
blip_clear(core->getAudioChannel(core, 1));
|
||||||
} while (core->frameCounter(core) < frames && !_dispatchExiting);
|
} while (frames > 0 && !_dispatchExiting);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void _fuzzShutdown(int signal) {
|
static void _fuzzShutdown(int signal) {
|
||||||
|
|
Loading…
Reference in New Issue