summaryrefslogtreecommitdiff
path: root/textscreen/txt_sdl.c
diff options
context:
space:
mode:
authorSimon Howard2011-02-05 16:50:28 +0000
committerSimon Howard2011-02-05 16:50:28 +0000
commita366f68b2959282b22ab6f08569a253f0540745c (patch)
treee6347eab7238327903f0820220fa4a665afce783 /textscreen/txt_sdl.c
parent83fb03a0e09920ec324734e9ae3a6cd15fb041e7 (diff)
downloadchocolate-doom-a366f68b2959282b22ab6f08569a253f0540745c.tar.gz
chocolate-doom-a366f68b2959282b22ab6f08569a253f0540745c.tar.bz2
chocolate-doom-a366f68b2959282b22ab6f08569a253f0540745c.zip
Fix bug with libtextscreen where it was not possible to type a '+'
(thanks Alexandre Xavier). Subversion-branch: /trunk/chocolate-doom Subversion-revision: 2249
Diffstat (limited to 'textscreen/txt_sdl.c')
-rw-r--r--textscreen/txt_sdl.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/textscreen/txt_sdl.c b/textscreen/txt_sdl.c
index 315d2762..365e6bf0 100644
--- a/textscreen/txt_sdl.c
+++ b/textscreen/txt_sdl.c
@@ -384,10 +384,6 @@ static int TranslateKey(SDL_keysym *sym)
case SDLK_PAUSE: return KEY_PAUSE;
-#if !SDL_VERSION_ATLEAST(1, 3, 0)
- case SDLK_EQUALS: return KEY_EQUALS;
-#endif
-
case SDLK_LSHIFT:
case SDLK_RSHIFT:
return KEY_RSHIFT;