aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Bowes2022-01-28 22:37:07 -0500
committerKeith Bowes2022-01-28 22:37:30 -0500
commitbf6f21259c0f73f7c1150ddfaa67ffb129849118 (patch)
tree3fb3833b5251797f01d938278bc7dd3cea7a7dce
parent77e9cd293c791b47f4397da0a47242b329243cb5 (diff)
downloadsnes9x2005-bf6f21259c0f73f7c1150ddfaa67ffb129849118.tar.gz
snes9x2005-bf6f21259c0f73f7c1150ddfaa67ffb129849118.tar.bz2
snes9x2005-bf6f21259c0f73f7c1150ddfaa67ffb129849118.zip
Call S9xSoftReset() instead of S9xReset(), like newer Snes9x cores do
-rw-r--r--libretro.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libretro.c b/libretro.c
index 49d5b13..ae4cd85 100644
--- a/libretro.c
+++ b/libretro.c
@@ -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)