mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix pausing Qt Multimedia audio (fixes #1643)
This commit is contained in:
parent
fd352d7cac
commit
458a95e11f
1
CHANGES
1
CHANGES
|
@ -39,6 +39,7 @@ Other fixes:
|
|||
- Qt: Fix window title not updating after shutting down game
|
||||
- Qt: Fix GIF view not allowing manual filename entry
|
||||
- Qt: Fix non-GB build (fixes mgba.io/i/1664)
|
||||
- Qt: Fix pausing Qt Multimedia audio (fixes mgba.io/i/1643)
|
||||
- Util: Fix crash reading invalid ELFs
|
||||
- VFS: Fix handle leak when double-mapping (fixes mgba.io/i/1659)
|
||||
Misc:
|
||||
|
|
|
@ -949,6 +949,8 @@ void Window::reloadAudioDriver() {
|
|||
m_audioProcessor->start();
|
||||
connect(m_controller.get(), &CoreController::stopping, m_audioProcessor.get(), &AudioProcessor::stop);
|
||||
connect(m_controller.get(), &CoreController::fastForwardChanged, m_audioProcessor.get(), &AudioProcessor::inputParametersChanged);
|
||||
connect(m_controller.get(), &CoreController::paused, m_audioProcessor.get(), &AudioProcessor::pause);
|
||||
connect(m_controller.get(), &CoreController::unpaused, m_audioProcessor.get(), &AudioProcessor::start);
|
||||
}
|
||||
|
||||
void Window::changeRenderer() {
|
||||
|
|
Loading…
Reference in New Issue