MCPcopy Create free account
hub / github.com/DescentDevelopers/Descent3 / FindFreeScriptSlot

Function FindFreeScriptSlot

editor/ObjCScript.cpp:753–760  ·  view source on GitHub ↗

@@ @@// @@// INTERNAL FUNCTIONS @@// @@ @@// function to find first free slot in default script list.

Source from the content-addressed store, hash-verified

751//@@
752//@@// function to find first free slot in default script list.
753int FindFreeScriptSlot() {
754 int i;
755 for (i = 0; i < MAX_SCRIPTS; i++)
756 if (!Script_names[i].used)
757 return i;
758
759 return -1;
760}
761
762// other stuff
763void tScriptName::add_parameter(const char *type, const char *parm) {

Callers 1

AddScriptToListFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected