mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- fixed: allow to use all hqNx texture upscale modes
This commit is contained in:
parent
571f7a4eb6
commit
19ae244f66
1 changed files with 4 additions and 0 deletions
|
@ -46,7 +46,11 @@
|
||||||
|
|
||||||
CUSTOM_CVAR(Int, gl_texture_hqresize, 0, CVAR_ARCHIVE | CVAR_GLOBALCONFIG | CVAR_NOINITCALL)
|
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)
|
if (self < 0 || self > 6)
|
||||||
|
#endif
|
||||||
self = 0;
|
self = 0;
|
||||||
GLRenderer->FlushTextures();
|
GLRenderer->FlushTextures();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue