RTech: make warning for non-certain builds only

This warning should be for non-cert builds only, all command code calling this function is already warning on their own, and in actual runtime code, silent failure is prefered as there are other warning/error routines there. The non-string version of this function should always be prevered however as its much faster.
This commit is contained in:
Kawe Mazidjatari 2024-11-17 13:58:30 +01:00
parent 953bdf5d5f
commit 77637019d1

View File

@ -278,7 +278,7 @@ const PakLoadedInfo_s* Pak_GetPakInfo(const char* const pakName)
return info;
}
Warning(eDLL_T::RTECH, "%s - Failed to retrieve pak info for name '%s'\n", __FUNCTION__, pakName);
DevWarning(eDLL_T::RTECH, "%s - Failed to retrieve pak info for name '%s'\n", __FUNCTION__, pakName);
return nullptr;
}