Merge pull request #91 from keithbowes/soft-reset

Call S9xSoftReset() instead of S9xReset(), like newer Snes9x cores do
This commit is contained in:
Autechre 2022-01-29 11:00:08 +01:00 committed by GitHub
commit 01564ac5d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -689,7 +689,7 @@ void retro_get_system_av_info(struct retro_system_av_info* info)
void retro_reset(void)
{
CPU.Flags = 0;
S9xReset();
S9xSoftReset();
}
size_t retro_serialize_size(void)