Merge pull request #38538 from avril-gh/fix-mistyped-setting-path

fix mistyped setting path
This commit is contained in:
Rémi Verschelde 2020-05-07 18:00:34 +02:00 committed by GitHub
commit 5516942110
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -5966,7 +5966,7 @@ void RasterizerStorageGLES2::initialize() {
#ifdef JAVASCRIPT_ENABLED
config.support_half_float_vertices = false;
#endif
bool disable_half_float = GLOBAL_GET("rendering/gles2/batching/disable_half_float");
bool disable_half_float = GLOBAL_GET("rendering/gles2/debug/disable_half_float");
if (disable_half_float) {
config.support_half_float_vertices = false;
}