diff --git a/src/gl/system/gl_interface.cpp b/src/gl/system/gl_interface.cpp index 3f0fe4dbf3..e1102de929 100644 --- a/src/gl/system/gl_interface.cpp +++ b/src/gl/system/gl_interface.cpp @@ -373,18 +373,6 @@ void gl_PrintStartupLog() glGetIntegerv(GL_MAX_VERTEX_SHADER_STORAGE_BLOCKS, &v); Printf("Max. vertex shader storage blocks: %d\n", v); } - - // For shader-less, the special alphatexture translation must be changed to actually set the alpha, because it won't get translated by a shader. - if (gl.legacyMode) - { - FRemapTable *remap = translationtables[TRANSLATION_Standard][8]; - for (int i = 0; i < 256; i++) - { - remap->Remap[i] = i; - remap->Palette[i] = PalEntry(i, 255, 255, 255); - } - } - } std::pair gl_getInfo()