From 2575403acf52d1f20dac413a9f434e4a36f3647a Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 29 May 2019 01:57:52 -0400 Subject: [PATCH] yuzu/bootmanager: Change false literal to 0 for setSwapInterval() This function is defined as taking an int, not a bool. --- src/yuzu/bootmanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp index a4b89eed8f..9d5044b8f8 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);