mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
make the "no mouse" error message a little more informative
This commit is contained in:
parent
c85fd3bd56
commit
1130eed85a
1 changed files with 3 additions and 1 deletions
|
@ -393,7 +393,9 @@ IN_InitMouse (void)
|
|||
// closing it to ensure its opened how we want it
|
||||
mouse_close();
|
||||
if (mouse_init (mousedev, mtype, mouserate)) {
|
||||
Con_Printf ("No mouse found\n");
|
||||
Con_Printf ("No mouse found. Check your libvga.conf mouse settings"
|
||||
" and that the mouse\n"
|
||||
"device has appropriate permission settings.\n");
|
||||
UseMouse = 0;
|
||||
} else {
|
||||
mouse_seteventhandler ((void *) mousehandler);
|
||||
|
|
Loading…
Reference in a new issue