Fixed a problem when loading joystick drivers: When an install error occurred,

the driver wasn't removed from memory.


git-svn-id: svn://svn.cc65.org/cc65/trunk@3752 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2006-06-04 10:15:18 +00:00
parent dc569cad49
commit 878dcf4aa7
4 changed files with 44 additions and 16 deletions

View File

@@ -6,10 +6,10 @@
/* */
/* */
/* */
/* (C) 2002-2004 Ullrich von Bassewitz */
/* R<>merstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* (C) 2002-2006, Ullrich von Bassewitz */
/* R<EFBFBD>merstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
@@ -72,6 +72,17 @@ extern joy_drv_header* joy_drv; /* Pointer to driver */
/*****************************************************************************/
/* Code */
/*****************************************************************************/
void joy_clear_ptr (void);
/* Clear the joy_drv pointer */
/* End of joy-kernel.h */
#endif