Close game interface before showing crash form and don't show it at all on dedicated servers.

This commit is contained in:
ScottNZ
2013-08-29 01:30:29 +12:00
parent b44d5a87f6
commit b654b65d8d
5 changed files with 19 additions and 1 deletions

View File

@@ -61,6 +61,12 @@ namespace OpenRA.Renderer.Cg
FragmentProfile = CgGl.cgGLGetLatestProfile(CgGl.CG_GL_FRAGMENT);
}
public override void Quit()
{
Tao.Cg.Cg.cgDestroyContext(Context);
base.Quit();
}
public override IShader CreateShader(string name) { return new Shader(this, name); }
}
}