From 1130eed85a96d4847418b6eda01ce2ccd54ba540 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 19 Dec 2002 16:58:44 +0000 Subject: [PATCH] make the "no mouse" error message a little more informative --- libs/video/targets/in_svgalib.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libs/video/targets/in_svgalib.c b/libs/video/targets/in_svgalib.c index 7dc8049d5..784253156 100644 --- a/libs/video/targets/in_svgalib.c +++ b/libs/video/targets/in_svgalib.c @@ -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);