]> icculus.org git repositories - btb/d2x.git/blob - input/svgalib_init.c
moved linux-specific defs out of joy.h
[btb/d2x.git] / input / svgalib_init.c
1 /* SVGALib initialization */
2
3 #include <conf.h>
4
5 #ifdef SVGALIB_INPUT
6
7 #include "args.h"
8
9 extern void d_mouse_init();
10
11 void arch_svgalib_init()
12 {
13  if (!FindArg("-nomouse"))
14         d_mouse_init();
15 }
16
17 #endif /* SVGALIB_INPUT */