dxx-rebirth/input/svgalib_init.c

18 lines
220 B
C
Raw Normal View History

2001-01-22 13:38:08 +00:00
/* SVGALib initialization */
#include <conf.h>
2001-01-22 14:58:52 +00:00
#ifdef SVGALIB_INPUT
2001-01-22 13:38:08 +00:00
#include "args.h"
extern void d_mouse_init();
void arch_svgalib_init()
{
2001-01-24 04:29:48 +00:00
if (!FindArg("-nomouse"))
2001-01-22 13:38:08 +00:00
d_mouse_init();
}
2001-01-22 14:58:52 +00:00
#endif /* SVGALIB_INPUT */