diff options
author | Autechre | 2022-01-29 11:00:08 +0100 |
---|---|---|
committer | GitHub | 2022-01-29 11:00:08 +0100 |
commit | 01564ac5d9d7a6b910c6d2b4389cdf9076044787 (patch) | |
tree | 3fb3833b5251797f01d938278bc7dd3cea7a7dce | |
parent | 77e9cd293c791b47f4397da0a47242b329243cb5 (diff) | |
parent | bf6f21259c0f73f7c1150ddfaa67ffb129849118 (diff) | |
download | snes9x2005-01564ac5d9d7a6b910c6d2b4389cdf9076044787.tar.gz snes9x2005-01564ac5d9d7a6b910c6d2b4389cdf9076044787.tar.bz2 snes9x2005-01564ac5d9d7a6b910c6d2b4389cdf9076044787.zip |
Merge pull request #91 from keithbowes/soft-reset
Call S9xSoftReset() instead of S9xReset(), like newer Snes9x cores do
-rw-r--r-- | libretro.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |