Ejemplo n.º 1
0
/**
 * @brief Exits the input subsystem.
 */
void input_exit (void)
{
   free(input_keybinds);

#if !SDL_VERSION_ATLEAST(2,0,0)
   input_keyConvDestroy();
#endif /* !SDL_VERSION_ATLEAST(2,0,0) */
}
Ejemplo n.º 2
0
Archivo: input.c Proyecto: Ttech/naev
/**
 * @brief Exits the input subsystem.
 */
void input_exit (void)
{
   free(input_keybinds);

   input_keyConvDestroy();
}