From 8371fcfd892c95d4bef3e5be97a2845c422691e9 Mon Sep 17 00:00:00 2001 From: "K.Ohta" Date: Mon, 21 Oct 2019 03:48:16 +0900 Subject: [PATCH] [Qt][OpenGL][4.5] NTSC SHADER: Adjust scale factor. --- source/src/qt/gui/gl4_5/qt_glutil_gl4_5.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/src/qt/gui/gl4_5/qt_glutil_gl4_5.cpp b/source/src/qt/gui/gl4_5/qt_glutil_gl4_5.cpp index 34015ef2a..973437398 100644 --- a/source/src/qt/gui/gl4_5/qt_glutil_gl4_5.cpp +++ b/source/src/qt/gui/gl4_5/qt_glutil_gl4_5.cpp @@ -383,8 +383,8 @@ void GLDraw_4_5::initLocalGLObjects(void) int _width = using_flags->get_screen_width(); int _height = using_flags->get_screen_height(); - if(((int)(_width * 3.5)) <= texture_max_size) { - _width = (int)(_width * 3.5); + if(((int)(_width * 3.0)) <= texture_max_size) { + _width = (int)(_width * 3.0); low_resolution_screen = true; } else { _width = _width * 2; -- 2.11.0