| 1859 | } |
| 1860 | |
| 1861 | void FCEUD_TurboOn (void) |
| 1862 | { |
| 1863 | tempwinsync = winsync; //Store winsync setting |
| 1864 | winsync = 0; //turn off winsync for turbo (so that turbo can function even with VBlank sync methods |
| 1865 | tempsoundquality = soundquality; //Store sound quality settings |
| 1866 | FCEUI_SetSoundQuality(0); //Turn sound quality to low |
| 1867 | turbo = true; |
| 1868 | if (muteTurbo && soundo) TrashSound(); |
| 1869 | } |
| 1870 | void FCEUD_TurboOff (void) |
| 1871 | { |
| 1872 | winsync = tempwinsync; //Restore winsync setting |
nothing calls this directly
no test coverage detected