Adjust S_AddSoundFx to also use I_Error when exhausting Freeslots

This commit is contained in:
Ashnal 2021-09-04 22:47:13 -04:00
parent f5bcfc6379
commit 4b750e0504

View file

@ -1034,7 +1034,7 @@ sfxenum_t S_AddSoundFx(const char *name, boolean singular, INT32 flags, boolean
return i; return i;
} }
} }
CONS_Alert(CONS_WARNING, M_GetText("No more free sound slots\n")); I_Error("Out of Sound Freeslots while allocating \"%s\"\nLoad less addons to fix this.", name);
return 0; return 0;
} }