- fixed: allow to use all hqNx texture upscale modes

This commit is contained in:
alexey.lysiuk 2015-12-24 10:33:30 +02:00
parent 571f7a4eb6
commit 19ae244f66
1 changed files with 4 additions and 0 deletions

View File

@ -46,7 +46,11 @@
CUSTOM_CVAR(Int, gl_texture_hqresize, 0, CVAR_ARCHIVE | CVAR_GLOBALCONFIG | CVAR_NOINITCALL)
{
#ifdef _MSC_VER
if (self < 0 || self > 9)
#else
if (self < 0 || self > 6)
#endif
self = 0;
GLRenderer->FlushTextures();
}