It's okay to quit things more than once.

main
Sam Lantinga 2013-10-20 10:39:26 -07:00
parent 20f5167d27
commit ade13fd741
1 changed files with 0 additions and 2 deletions

View File

@ -69,8 +69,6 @@ static void
SDL_PrivateSubsystemRefCountDecr(Uint32 subsystem)
{
int subsystem_index = SDL_MostSignificantBitIndex32(subsystem);
/* If this assert triggers there is a mismatch between init and quit calls */
SDL_assert(SDL_SubsystemRefCount[subsystem_index] > 0);
if (SDL_SubsystemRefCount[subsystem_index] > 0) {
--SDL_SubsystemRefCount[subsystem_index];
}