Remove the joiplay addition

Remove the joiplay addition
//Set max texture size to 16384 if conf.maxTextureSize is 0
This commit is contained in:
pk-2000 2020-04-08 21:18:28 +03:00 committed by GitHub
parent 109b34ea9d
commit 3525da4df2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 7 deletions

View File

@ -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;
}
}