| 3910 | } |
| 3911 | |
| 3912 | void consoleWin_t::toggleForeground(void) |
| 3913 | { |
| 3914 | bool fgOn, bgOn; |
| 3915 | FCEU_WRAPPER_LOCK(); |
| 3916 | FCEUI_GetRenderPlanes( fgOn, bgOn ); |
| 3917 | FCEUI_SetRenderPlanes( !fgOn, bgOn ); |
| 3918 | FCEU_WRAPPER_UNLOCK(); |
| 3919 | } |
| 3920 | |
| 3921 | void consoleWin_t::toggleTurboMode(void) |
| 3922 | { |
nothing calls this directly
no test coverage detected