* This function is a wrapper for FCEUI_ToggleEmulationPause that handles * releasing/capturing mouse pointer during pause toggles * */
| 213 | * releasing/capturing mouse pointer during pause toggles |
| 214 | * */ |
| 215 | void |
| 216 | TogglePause () |
| 217 | { |
| 218 | FCEUI_ToggleEmulationPause (); |
| 219 | |
| 220 | int no_cursor; |
| 221 | g_config->getOption("SDL.NoFullscreenCursor", &no_cursor); |
| 222 | int fullscreen; |
| 223 | g_config->getOption ("SDL.Fullscreen", &fullscreen); |
| 224 | |
| 225 | return; |
| 226 | } |
| 227 | |
| 228 | /*** |
| 229 | * This function opens a file chooser dialog and returns the filename the |
no test coverage detected