mirror of
https://github.com/yawut/SDL.git
synced 2026-04-24 07:16:52 -05:00
Added an assert to catch init/quit call mismatch that might bite people.
This commit is contained in:
parent
1935216d1e
commit
db4be173a2
|
|
@ -65,6 +65,8 @@ 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];
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user