all repos — mgba @ 62b801c851cfac59718a60f47480e9545c9a01e4

mGBA Game Boy Advance Emulator

Qt: Clarify recording options
Vicki Pfau vi@endrift.com
Sat, 04 May 2019 14:15:44 -0700
commit

62b801c851cfac59718a60f47480e9545c9a01e4

parent

bf8fde59c62cd6cec4a6d37e25f226bf5d40173e

1 files changed, 7 insertions(+), 6 deletions(-)

jump to
M src/platform/qt/Window.cppsrc/platform/qt/Window.cpp

@@ -1393,17 +1393,12 @@ }, "av", tr("F12"));

#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");

@@ -1463,6 +1458,12 @@ #ifdef M_CORE_GBA

Action* ioViewer = addGameAction(tr("View &I/O registers..."), "ioViewer", openControllerTView<IOViewer>(), "tools"); 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) {