From 3525da4df231adde775b20e6342a6ba7fe1ae7dc Mon Sep 17 00:00:00 2001 From: pk-2000 <63214388+pk-2000@users.noreply.github.com> Date: Wed, 8 Apr 2020 21:18:28 +0300 Subject: [PATCH] Remove the joiplay addition Remove the joiplay addition //Set max texture size to 16384 if conf.maxTextureSize is 0 --- src/glstate.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/glstate.cpp b/src/glstate.cpp index 5370619..610ce50 100644 --- a/src/glstate.cpp +++ b/src/glstate.cpp @@ -125,11 +125,4 @@ GLState::GLState(const Config &conf) if (conf.maxTextureSize > 0) caps.maxTexSize = conf.maxTextureSize; - - //Set max texture size to 16384 if conf.maxTextureSize is 0 - if (conf.maxTextureSize > 0){ - caps.maxTexSize = conf.maxTextureSize; - } else { - caps.maxTexSize = 16384; - } }