Sound gain dialog

This commit is contained in:
Cacodemon345
2021-12-12 16:22:35 +06:00
parent 457751d108
commit 080bc8682f
8 changed files with 191 additions and 1 deletions

View File

@@ -2,6 +2,7 @@
#include "ui_qt_mainwindow.h"
#include "qt_specifydimensions.h"
#include "qt_soundgain.hpp"
extern "C" {
#include <86box/86box.h>
@@ -1272,3 +1273,9 @@ void MainWindow::on_actionTake_screenshot_triggered()
endblit();
device_force_redraw();
}
void MainWindow::on_actionSound_gain_triggered()
{
SoundGain gain(this);
gain.exec();
}