| 3901 | } |
| 3902 | |
| 3903 | void consoleWin_t::toggleBackground(void) |
| 3904 | { |
| 3905 | bool fgOn, bgOn; |
| 3906 | FCEU_WRAPPER_LOCK(); |
| 3907 | FCEUI_GetRenderPlanes( fgOn, bgOn ); |
| 3908 | FCEUI_SetRenderPlanes( fgOn, !bgOn ); |
| 3909 | FCEU_WRAPPER_UNLOCK(); |
| 3910 | } |
| 3911 | |
| 3912 | void consoleWin_t::toggleForeground(void) |
| 3913 | { |
nothing calls this directly
no test coverage detected