Change default unfiltered texture mode to 0 (no mipmaps)

git-svn-id: https://svn.eduke32.com/eduke32@5874 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2016-09-18 03:54:21 +00:00
parent 68d6bb8af5
commit 543e7f67c2

View file

@ -1277,7 +1277,7 @@ extern int32_t glusetexcompr;
extern int32_t gltexfiltermode;
enum {
TEXFILTER_OFF = 2, // GL_NEAREST_MIPMAP_NEAREST
TEXFILTER_OFF = 0, // GL_NEAREST
TEXFILTER_ON = 5, // GL_LINEAR_MIPMAP_LINEAR
};