[client] disable multisample after logo is gone

We only use multisample to smooth out the edges of the LG logo, it is
pointless to leave it on after the logo is gone.
This commit is contained in:
Geoffrey McRae 2018-07-28 10:36:41 +10:00
parent a989914fef
commit 13cd50f92c

View File

@ -662,6 +662,7 @@ static void render_wait(struct Inst * this)
uint64_t t = microtime(); uint64_t t = microtime();
if (t > this->waitFadeTime) if (t > this->waitFadeTime)
{ {
glDisable(GL_MULTISAMPLE);
this->waitDone = true; this->waitDone = true;
return; return;
} }