Skip to content
Snippets Groups Projects
Commit 2575403a authored by Lioncash's avatar Lioncash
Browse files

yuzu/bootmanager: Change false literal to 0 for setSwapInterval()

This function is defined as taking an int, not a bool.
parent cfb59aad
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment