mirror of https://github.com/mgba-emu/mgba.git
Qt: Clarify some phrasing in the menus
This commit is contained in:
parent
e38a01f221
commit
72bd1a8eef
1
CHANGES
1
CHANGES
|
@ -17,6 +17,7 @@ Misc:
|
|||
- GBA: Exit cleanly on FATAL if the port supports it
|
||||
- Qt: Handle a game crash without crashing
|
||||
- Qt: Set default log level to FATAL, ERROR and WARN
|
||||
- Qt: Clarify some phrasing in the menus
|
||||
|
||||
0.1.0: (2014-12-13)
|
||||
- Initial release
|
||||
|
|
|
@ -469,7 +469,7 @@ void Window::setupMenu(QMenuBar* menubar) {
|
|||
|
||||
emulationMenu->addSeparator();
|
||||
|
||||
QAction* turbo = new QAction(tr("T&urbo"), emulationMenu);
|
||||
QAction* turbo = new QAction(tr("&Fast forward"), emulationMenu);
|
||||
turbo->setCheckable(true);
|
||||
turbo->setChecked(false);
|
||||
turbo->setShortcut(tr("Shift+Tab"));
|
||||
|
@ -536,7 +536,7 @@ void Window::setupMenu(QMenuBar* menubar) {
|
|||
|
||||
avMenu->addSeparator();
|
||||
|
||||
QMenu* buffersMenu = avMenu->addMenu(tr("Buffer &size"));
|
||||
QMenu* buffersMenu = avMenu->addMenu(tr("Audio buffer &size"));
|
||||
ConfigOption* buffers = m_config->addOption("audioBuffers");
|
||||
buffers->connect([this](const QVariant& value) { emit audioBufferSamplesChanged(value.toInt()); });
|
||||
buffers->addValue(tr("512"), 512, buffersMenu);
|
||||
|
|
Loading…
Reference in New Issue