Use SafeAddFirst

This commit is contained in:
smallmodel 2025-02-02 16:35:27 +01:00
parent 8234ce1e5f
commit d190cc6e40
No known key found for this signature in database
GPG key ID: 9F2D623CEDF08512

View file

@ -81,7 +81,7 @@ ScriptDelegate::ScriptDelegate(const char *inName, const char *inDescription)
: name(inName)
, description(inDescription)
{
LL_SafeAdd(root, this, next, prev);
LL_SafeAddFirst(root, this, next, prev);
}
ScriptDelegate::~ScriptDelegate()