Added a line to ensure that linear filter option is initialized at startup for Qt gui.

This commit is contained in:
mjbudd77 2020-10-20 07:28:46 -04:00
parent 812ef25629
commit 7c4c524152
2 changed files with 4 additions and 0 deletions

View File

@ -40,6 +40,8 @@ ConsoleViewGL_t::ConsoleViewGL_t(QWidget *parent)
memset( localBuf, 0, localBufSize ); memset( localBuf, 0, localBufSize );
} }
linearFilter = false;
if ( g_config ) if ( g_config )
{ {
int opt; int opt;

View File

@ -47,6 +47,8 @@ ConsoleViewSDL_t::ConsoleViewSDL_t(QWidget *parent)
memset( localBuf, 0, localBufSize ); memset( localBuf, 0, localBufSize );
} }
linearFilter = false;
if ( g_config ) if ( g_config )
{ {
int opt; int opt;