diff options
author | Nebuleon Fumika | 2013-02-01 06:10:57 -0500 |
---|---|---|
committer | Nebuleon Fumika | 2013-02-01 06:10:57 -0500 |
commit | 58a3dc9b1762ef0b1b12090d1b707a7f7fc9d9f9 (patch) | |
tree | 1b2c26e3285445d3b992a53640fcd3282e86b5c3 /source | |
parent | c9c91f327a4ded2f52f13c449690a334623e0fdd (diff) | |
download | snes9x2005-58a3dc9b1762ef0b1b12090d1b707a7f7fc9d9f9.tar.gz snes9x2005-58a3dc9b1762ef0b1b12090d1b707a7f7fc9d9f9.tar.bz2 snes9x2005-58a3dc9b1762ef0b1b12090d1b707a7f7fc9d9f9.zip |
Hook fast-forward into Settings.TurboSkipFrames.
Diffstat (limited to 'source')
-rw-r--r-- | source/nds/entry.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/nds/entry.cpp b/source/nds/entry.cpp index 949cecf..6fab5fc 100644 --- a/source/nds/entry.cpp +++ b/source/nds/entry.cpp @@ -403,7 +403,7 @@ void init_sfc_setting(void) #endif Settings.ApplyCheats = TRUE; Settings.TurboMode = FALSE; - Settings.TurboSkipFrames = 40; + Settings.TurboSkipFrames = 10; Settings.StretchScreenshots = 1; Settings.HBlankStart = (256 * Settings.H_Max) / SNES_HCOUNTER_MAX; @@ -608,7 +608,7 @@ void S9xSyncSpeed () sync_last = syncnow; sync_next = syncnow; - if(++skip_rate < 10) + if(++skip_rate < Settings.TurboSkipFrames) IPPU.RenderThisFrame = false; else { |