diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/m_protoint.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/m_protoint.h b/include/m_protoint.h index b2953f2af6..c903bd60d3 100644 --- a/include/m_protoint.h +++ b/include/m_protoint.h @@ -59,13 +59,13 @@ struct PROTO_INTERFACE : public MZeroedObject //////////////////////////////////////////////////////////////////////////////////////
// Helpers
- __forceinline void debugLogA(LPCSTR szFormat, ...)
+ __inline void debugLogA(LPCSTR szFormat, ...)
{
va_list args;
va_start(args, szFormat);
ProtoLogA(this, szFormat, args);
}
- __forceinline void debugLogW(LPCWSTR wszFormat, ...)
+ __inline void debugLogW(LPCWSTR wszFormat, ...)
{
va_list args;
va_start(args, wszFormat);
|