Qt: Clarify recording options

This commit is contained in:
Vicki Pfau 2019-05-04 14:15:44 -07:00
parent bf8fde59c6
commit 62b801c851
1 changed files with 7 additions and 6 deletions

View File

@ -1393,18 +1393,13 @@ void Window::setupMenu(QMenuBar* menubar) {
#endif
#ifdef USE_FFMPEG
addGameAction(tr("Record output..."), "recordOutput", this, &Window::openVideoWindow, "av");
addGameAction(tr("Record A/V..."), "recordOutput", this, &Window::openVideoWindow, "av");
#endif
#ifdef USE_MAGICK
addGameAction(tr("Record GIF..."), "recordGIF", this, &Window::openGIFWindow, "av");
#endif
addGameAction(tr("Record video log..."), "recordVL", this, &Window::startVideoLog, "av");
addGameAction(tr("Stop video log"), "stopVL", [this]() {
m_controller->endVideoLog();
}, "av");
m_actions.addSeparator("av");
m_actions.addMenu(tr("Video layers"), "videoLayers", "av");
m_actions.addMenu(tr("Audio channels"), "audioChannels", "av");
@ -1464,6 +1459,12 @@ void Window::setupMenu(QMenuBar* menubar) {
m_platformActions.insert(PLATFORM_GBA, ioViewer);
#endif
m_actions.addSeparator("tools");
addGameAction(tr("Record debug video log..."), "recordVL", this, &Window::startVideoLog, "tools");
addGameAction(tr("Stop debug video log"), "stopVL", [this]() {
m_controller->endVideoLog();
}, "tools");
ConfigOption* skipBios = m_config->addOption("skipBios");
skipBios->connect([this](const QVariant& value) {
reloadConfig();