remove redundant joy_init()

This commit is contained in:
Bradley Bell 2005-04-04 08:42:17 +00:00
parent 9eb016ef18
commit bf9dc1657c
2 changed files with 4 additions and 4 deletions

View file

@ -1,3 +1,7 @@
2005-04-04 Bradley Bell <btb@icculus.org>
* arch/win32/mingw_init.c: remove redundnt joy_init()
2005-04-01 Chris Taylor <chris@icculus.org>
* main/game.c, main/editor/kdefs.h, main/editor/kfuncs.c,

View file

@ -32,10 +32,6 @@ void arch_init()
{
// Initialise the library
arch_sdl_init();
if (!FindArg( "-nojoystick" )) {
con_printf(CON_VERBOSE, "\n%s", TXT_VERBOSE_6);
joy_init();
}
//added 06/09/99 Matt Mueller - fix nonetwork compile
#ifdef NETWORK
//end addition -MM