mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Rename Detour_Free() to Detour_LevelShutdown()
Added the missing call to v_Detour_LevelInit(), which was removed for debugging purposes.
This commit is contained in:
parent
4bd164a535
commit
8147431b0f
@ -66,7 +66,7 @@ void Detour_LevelInit()
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose: free's the memory used by all valid NavMesh slots
|
||||
//-----------------------------------------------------------------------------
|
||||
void Detour_Free()
|
||||
void Detour_LevelShutdown()
|
||||
{
|
||||
for (int i = 0; i < MAX_HULLS; i++)
|
||||
{
|
||||
@ -80,7 +80,7 @@ void Detour_Free()
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose: checks if a NavMesh has failed to load
|
||||
// Purpose: checks if the NavMesh has failed to load
|
||||
// Output : true if a NavMesh has successfully loaded, false otherwise
|
||||
//-----------------------------------------------------------------------------
|
||||
bool Detour_IsLoaded()
|
||||
@ -109,7 +109,9 @@ bool Detour_IsLoaded()
|
||||
void Detour_HotSwap()
|
||||
{
|
||||
// Free and re-init NavMesh.
|
||||
Detour_Free();
|
||||
Detour_LevelShutdown();
|
||||
v_Detour_LevelInit();
|
||||
|
||||
if (!Detour_IsLoaded())
|
||||
Error(eDLL_T::SERVER, NOERROR, "%s - Failed to hot swap NavMesh\n", __FUNCTION__);
|
||||
}
|
||||
|
@ -50,7 +50,7 @@ dtNavMesh* GetNavMeshForHull(int hullSize);
|
||||
uint32_t GetHullMaskById(int hullId);
|
||||
|
||||
void Detour_LevelInit();
|
||||
void Detour_Free();
|
||||
void Detour_LevelShutdown();
|
||||
bool Detour_IsLoaded();
|
||||
void Detour_HotSwap();
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -225,7 +225,7 @@ Detour_HotSwap_f
|
||||
void Detour_HotSwap_f(const CCommand& args)
|
||||
{
|
||||
if (!g_pServer->IsActive())
|
||||
return;
|
||||
return; // Only execute if server is initialized and active.
|
||||
|
||||
DevMsg(eDLL_T::SERVER, "Executing NavMesh hot swap for level '%s'\n",
|
||||
g_ServerGlobalVariables->m_pszMapName);
|
||||
|
Loading…
x
Reference in New Issue
Block a user