diff options
-rw-r--r-- | src/refresh/gl/draw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/refresh/gl/draw.c b/src/refresh/gl/draw.c index 6beef7b..bbdea7b 100644 --- a/src/refresh/gl/draw.c +++ b/src/refresh/gl/draw.c @@ -236,7 +236,7 @@ static inline void draw_char(int x, int y, int flags, int c, image_t *image) s = (c & 15) * 0.0625f; t = (c >> 4) * 0.0625f; - if (gl_fontshadow->integer > 0) { + if (gl_fontshadow->integer > 0 && c != 0x83) { uint32_t black = MakeColor(0, 0, 0, draw.colors[0].u8[3]); GL_StretchPic(x + 1, y + 1, CHAR_WIDTH, CHAR_HEIGHT, s, t, |