Ejemplo n.º 1
0
/*********IMPLEMENTATIONS***************/
static void				CELL_DeleteDevice		(SDL_VideoDevice *device)
{
	CELL_RC_DumpData();

#ifndef CELL_NO_SOFT_INPUT
	CELL_CURSOR_Free(0, CELL_Video.OSK.Cursor);
#endif

	CELL_PSGL_Kill(device);

	SDL_free(device);

	cellKbEnd();
	cellMouseEnd();
	cellPadEnd();
}
Ejemplo n.º 2
0
//-----------------------------------------------------------------------------
// Description: Platform specific input shutdown
// Parameters: 
// Returns:
// Notes:
//-----------------------------------------------------------------------------
void FWInput::platformShutdown()
{
	cellPadEnd();
	cellKbEnd();
	cellMouseEnd();
}