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