mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-26 20:31:30 +00:00
Adjust S_AddSoundFx to also use I_Error when exhausting Freeslots
This commit is contained in:
parent
f5bcfc6379
commit
4b750e0504
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue