* This function is a wrapper for FCEUI_ToggleEmulationPause that handles * releasing/capturing mouse pointer during pause toggles * */
| 594 | * releasing/capturing mouse pointer during pause toggles |
| 595 | * */ |
| 596 | void TogglePause(void) |
| 597 | { |
| 598 | FCEUI_ToggleEmulationPause(); |
| 599 | |
| 600 | int no_cursor; |
| 601 | g_config->getOption("SDL.NoFullscreenCursor", &no_cursor); |
| 602 | int fullscreen; |
| 603 | g_config->getOption("SDL.Fullscreen", &fullscreen); |
| 604 | |
| 605 | return; |
| 606 | } |
| 607 | |
| 608 | /*** |
| 609 | * This function opens a file chooser dialog and returns the filename the |
no test coverage detected