mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
/W4: Fix return value truncation warning
Fix value truncation warning caused by returning 'CServerNetworkProperty::m_edict' in 'CServerNetworkProperty::GetEdict'. type has been demoted to actual type 'edict_t'.
This commit is contained in:
parent
42b3e49840
commit
7727f13efa
@ -14,8 +14,9 @@
|
||||
#include "public/iservernetworkable.h"
|
||||
#include "public/server_class.h"
|
||||
#include "public/edict.h"
|
||||
#include "game/shared/predictioncopy.h"
|
||||
|
||||
struct CServerNetworkProperty : IServerNetworkable
|
||||
class CServerNetworkProperty : IServerNetworkable
|
||||
{
|
||||
public:
|
||||
edict_t GetEdict() const;
|
||||
@ -23,8 +24,9 @@ public:
|
||||
private:
|
||||
CBaseEntity* m_pOuter;
|
||||
ServerClass* m_pServerClass;
|
||||
int m_edict;
|
||||
int m_hParent;
|
||||
edict_t m_edict;
|
||||
EHANDLE m_hParent;
|
||||
};
|
||||
static_assert(sizeof(CServerNetworkProperty) == 32);
|
||||
|
||||
#endif // SERVERNETWORKPROPERTY_H
|
||||
|
Loading…
x
Reference in New Issue
Block a user