default radio state tweak, minor bug fixes

This commit is contained in:
tmj-fstate
2020-10-17 22:56:01 +02:00
parent ef200df575
commit af3a724ede
4 changed files with 6 additions and 5 deletions

View File

@@ -740,7 +740,8 @@ eu07_application::init_glfw() {
monitor = glfwGetPrimaryMonitor();
glfwWindowHint( GLFW_AUTO_ICONIFY, GLFW_FALSE );
if( Global.iMultisampling > 0 ) {
glfwWindowHint( GLFW_FLOATING, GLFW_FALSE );
if( ( Global.iMultisampling > 0 ) && ( Global.gfx_skippipeline ) ) {
glfwWindowHint( GLFW_SAMPLES, 1 << Global.iMultisampling );
}