]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - vid_glx.c
allow typing characters above 126
[xonotic/darkplaces.git] / vid_glx.c
index 8c2ab74e667ce491225455b07e9da45f27c8b99c..80fa95abbf7d3cf69df929a394ae6a04b5a1d447 100644 (file)
--- a/vid_glx.c
+++ b/vid_glx.c
@@ -210,7 +210,7 @@ static int XLateKey(XKeyEvent *ev, char *ascii)
                case XK_section:        key = '~'; break;
 
                default:
-                       if (keysym < 32 && keysym > 126)
+                       if (keysym < 32)
                                break;
 
                        if (keysym >= 'A' && keysym <= 'Z')
@@ -848,7 +848,7 @@ int VID_InitMode(int fullscreen, int width, int height, int bpp)
 
        if ((qglGetString = (const GLubyte* (GLAPIENTRY *)(GLenum name))GL_GetProcAddress("glGetString")) == NULL)
        {
-               Con_Printf ("glGetString not found in %s", gl_driver);
+               Con_Printf ("glGetString not found in %s\n", gl_driver);
                return false;
        }