We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30b68ac commit a77a7d7Copy full SHA for a77a7d7
Quake/in_sdl.c
@@ -707,6 +707,8 @@ void IN_MouseMove(usercmd_t *cmd)
707
dmx = total_dx * sensitivity.value;
708
dmy = total_dy * sensitivity.value;
709
710
+ Con_Printf("Mouse (%f, %f)\n", dmx, dmy);
711
+
712
total_dx = 0;
713
total_dy = 0;
714
@@ -849,7 +851,7 @@ static inline int IN_SDL_KeysymToQuakeKey(SDLKey sym)
849
851
case SDLK_BREAK: return K_PAUSE;
850
852
case SDLK_PAUSE: return K_PAUSE;
853
- case SDLK_WORLD_18: return '~'; // the '²' key
854
+ case SDLK_WORLD_18: return '~'; // the '�' key
855
856
default: return 0;
857
}
0 commit comments