shithub: choc

Download patch

ref: 186d0dd6efb317c4e983af04f939704ebd8e510a
parent: 3aeb98b92575dccb70df15c393c95a72891ce205
author: Simon Howard <[email protected]>
date: Thu Aug 4 15:54:56 EDT 2005

Use keysym value rather than unicode value (fixes problems with shift
key)

Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 38

--- a/src/i_video.c
+++ b/src/i_video.c
@@ -1,7 +1,7 @@
 // Emacs style mode select   -*- C++ -*- 
 //-----------------------------------------------------------------------------
 //
-// $Id: i_video.c 37 2005-08-04 18:42:15Z fraggle $
+// $Id: i_video.c 38 2005-08-04 19:54:56Z fraggle $
 //
 // Copyright(C) 1993-1996 Id Software, Inc.
 // Copyright(C) 2005 Simon Howard
@@ -22,6 +22,10 @@
 // 02111-1307, USA.
 //
 // $Log$
+// Revision 1.12  2005/08/04 19:54:56  fraggle
+// Use keysym value rather than unicode value (fixes problems with shift
+// key)
+//
 // Revision 1.11  2005/08/04 18:42:15  fraggle
 // Silence compiler warnings
 //
@@ -65,7 +69,7 @@
 //-----------------------------------------------------------------------------
 
 static const char
-rcsid[] = "$Id: i_video.c 37 2005-08-04 18:42:15Z fraggle $";
+rcsid[] = "$Id: i_video.c 38 2005-08-04 19:54:56Z fraggle $";
 
 #include <ctype.h>
 #include <SDL.h>
@@ -256,7 +260,7 @@
       case SDLK_KP_DIVIDE: return KEYP_DIVIDE;
 
       default:
-        return tolower(sym->unicode);
+        return tolower(sym->sym);
     }
 }
 
@@ -641,7 +645,6 @@
     else
 	screens[0] = (unsigned char *) malloc (SCREENWIDTH * SCREENHEIGHT);
 
-    SDL_EnableUNICODE(1);
     SDL_ShowCursor(0);
     SDL_WM_GrabInput(SDL_GRAB_ON);