]> icculus.org git repositories - btb/d2x.git/blob - arch/svgalib/init.c
use the orientation parameter of g3_draw_bitmap
[btb/d2x.git] / arch / svgalib / init.c
1 /*
2  *
3  * SVGALib initialization
4  *
5  *
6  */
7
8 #ifdef HAVE_CONFIG_H
9 #include <conf.h>
10 #endif
11
12 #include "args.h"
13
14 extern void d_mouse_init();
15
16 void arch_svgalib_init()
17 {
18  if (!FindArg("-nomouse"))
19         d_mouse_init();
20 }