svgalib support

This commit is contained in:
Bradley Bell 2001-01-22 13:38:08 +00:00
parent f79eb381d5
commit 32d829d505

17
input/svgalib_init.c Normal file
View file

@ -0,0 +1,17 @@
/* SVGALib initialization */
#include <conf.h>
#ifdef __SVGALIB__
#include "args.h"
extern void d_mouse_init();
void arch_svgalib_init()
{
if (!args_find("-nomouse"))
d_mouse_init();
}
#endif /* __SVGALIB__ */