Created
May 7, 2012 20:36
-
-
Save Themaister/2630236 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit 01d2bdb2113c8ed98a5aaa8cd3db2e001015530d | |
Author: Themaister <[email protected]> | |
Date: Mon May 7 22:36:18 2012 +0200 | |
Fix save states failing in libretro. | |
diff --git a/libretro/libretro.cpp b/libretro/libretro.cpp | |
index f42db53..eb8590c 100644 | |
--- a/libretro/libretro.cpp | |
+++ b/libretro/libretro.cpp | |
@@ -251,7 +251,7 @@ void retro_init() | |
Settings.InitialInfoStringTimeout = 120; | |
Settings.HDMATimingHack = 100; | |
Settings.BlockInvalidVRAMAccessMaster = TRUE; | |
- Settings.StopEmulation = TRUE; | |
+ Settings.StopEmulation = FALSE; | |
Settings.WrongMovieStateProtection = TRUE; | |
Settings.DumpStreamsMaxFrames = -1; | |
Settings.StretchScreenshots = 0; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment