dxx-rebirth/input/svgalib_init.c

18 lines
222 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()
{
if (!args_find("-nomouse"))
d_mouse_init();
}
2001-01-22 14:58:52 +00:00
#endif /* SVGALIB_INPUT */