mirror of https://github.com/mgba-emu/mgba.git
Qt: Only disable swapInterval when fast-forwarding
This commit is contained in:
parent
85aaa6c3c5
commit
ae75abb8fa
|
@ -771,6 +771,7 @@ void PainterGL::start() {
|
|||
m_buffer = nullptr;
|
||||
m_active = true;
|
||||
m_started = true;
|
||||
swapInterval(1);
|
||||
emit started();
|
||||
}
|
||||
|
||||
|
@ -801,15 +802,16 @@ void PainterGL::draw() {
|
|||
}
|
||||
return;
|
||||
}
|
||||
if (m_swapInterval != !!sync->videoFrameWait) {
|
||||
swapInterval(!!sync->videoFrameWait);
|
||||
int wantSwap = sync->audioWait || sync->videoFrameWait;
|
||||
if (m_swapInterval != wantSwap) {
|
||||
swapInterval(wantSwap);
|
||||
}
|
||||
dequeue();
|
||||
bool forceRedraw = true;
|
||||
if (!m_delayTimer.isValid()) {
|
||||
m_delayTimer.start();
|
||||
} else {
|
||||
if (sync->audioWait || sync->videoFrameWait) {
|
||||
if (wantSwap) {
|
||||
while (m_delayTimer.nsecsElapsed() + OVERHEAD_NSEC < 1000000000 / sync->fpsTarget) {
|
||||
QThread::usleep(500);
|
||||
}
|
||||
|
|
|
@ -1760,13 +1760,6 @@ void Window::setupMenu(QMenuBar* menubar) {
|
|||
void Window::setupOptions() {
|
||||
ConfigOption* videoSync = m_config->addOption("videoSync");
|
||||
videoSync->connect([this](const QVariant& variant) {
|
||||
if (m_display) {
|
||||
bool ok;
|
||||
int interval = variant.toInt(&ok);
|
||||
if (ok) {
|
||||
m_display->swapInterval(interval);
|
||||
}
|
||||
}
|
||||
reloadConfig();
|
||||
}, this);
|
||||
|
||||
|
|
Loading…
Reference in New Issue