diff options
author | Lioncash <mathew1800@gmail.com> | 2019-05-29 07:57:52 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-06-03 21:31:52 +0200 |
commit | 2575403acf52d1f20dac413a9f434e4a36f3647a (patch) | |
tree | ea74499571a49f05978310c3dd62241ca3040708 /src | |
parent | yuzu/bootmanager: Remove pointer downcast in GRenderWindow's constructor (diff) | |
download | yuzu-2575403acf52d1f20dac413a9f434e4a36f3647a.tar yuzu-2575403acf52d1f20dac413a9f434e4a36f3647a.tar.gz yuzu-2575403acf52d1f20dac413a9f434e4a36f3647a.tar.bz2 yuzu-2575403acf52d1f20dac413a9f434e4a36f3647a.tar.lz yuzu-2575403acf52d1f20dac413a9f434e4a36f3647a.tar.xz yuzu-2575403acf52d1f20dac413a9f434e4a36f3647a.tar.zst yuzu-2575403acf52d1f20dac413a9f434e4a36f3647a.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/bootmanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp index a4b89eed8..9d5044b8f 100644 --- a/src/yuzu/bootmanager.cpp +++ b/src/yuzu/bootmanager.cpp @@ -394,7 +394,7 @@ void GRenderWindow::InitRenderTarget() { context->setShareContext(shared_context.get()); context->setFormat(fmt); context->create(); - fmt.setSwapInterval(false); + fmt.setSwapInterval(0); child = new GGLWidgetInternal(this, shared_context.get()); container = QWidget::createWindowContainer(child, this); |