mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Fix clang-cl compile errors
Cannot concatenate __FUNCTION__ macro like this.
This commit is contained in:
parent
69e6c4718e
commit
16ea75d5a2
@ -30,14 +30,14 @@ void StreamDB_Init(const char* pszLevelName)
|
|||||||
if (pStreamKV)
|
if (pStreamKV)
|
||||||
{
|
{
|
||||||
const char* pszColumnName = pStreamKV->GetString();
|
const char* pszColumnName = pStreamKV->GetString();
|
||||||
DevMsg(eDLL_T::MS, __FUNCTION__": Loading override STBSP file '%s.stbsp'\n", pszColumnName);
|
DevMsg(eDLL_T::MS, "StreamDB_Init: Loading override STBSP file '%s.stbsp'\n", pszColumnName);
|
||||||
|
|
||||||
v_StreamDB_Init(pszColumnName);
|
v_StreamDB_Init(pszColumnName);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DevMsg(eDLL_T::MS, __FUNCTION__": Loading STBSP file '%s.stbsp'\n", pszLevelName);
|
DevMsg(eDLL_T::MS, "StreamDB_Init: Loading STBSP file '%s.stbsp'\n", pszLevelName);
|
||||||
v_StreamDB_Init(pszLevelName);
|
v_StreamDB_Init(pszLevelName);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1057,7 +1057,7 @@ void Mat_CrossHair_f(const CCommand& args)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
DevMsg(eDLL_T::MS, __FUNCTION__": No material found >:(\n");
|
DevMsg(eDLL_T::MS, "%s: No material found >:(\n", __FUNCTION__);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user