fix(game): update symbols
This commit is contained in:
parent
337b52891c
commit
0e576d3852
@ -19,11 +19,4 @@ namespace game
|
|||||||
}();
|
}();
|
||||||
return base;
|
return base;
|
||||||
}
|
}
|
||||||
|
|
||||||
CmdArgs* cmd_args_t::operator->() const
|
|
||||||
{
|
|
||||||
return Sys_GetTLS()->cmdArgs;
|
|
||||||
}
|
|
||||||
|
|
||||||
cmd_args_t cmd_args;
|
|
||||||
}
|
}
|
||||||
|
@ -50,13 +50,6 @@ namespace game
|
|||||||
private:
|
private:
|
||||||
size_t address_;
|
size_t address_;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct cmd_args_t
|
|
||||||
{
|
|
||||||
CmdArgs* operator->() const;
|
|
||||||
};
|
|
||||||
|
|
||||||
extern cmd_args_t cmd_args;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
inline size_t operator"" _g(const size_t val)
|
inline size_t operator"" _g(const size_t val)
|
||||||
|
@ -84,6 +84,14 @@ namespace game
|
|||||||
// Global game definitions
|
// Global game definitions
|
||||||
constexpr auto CMD_MAX_NESTING = 8;
|
constexpr auto CMD_MAX_NESTING = 8;
|
||||||
|
|
||||||
// Reimplementations
|
struct cmd_args_t
|
||||||
|
{
|
||||||
|
CmdArgs* operator->() const
|
||||||
|
{
|
||||||
|
return Sys_GetTLS()->cmdArgs;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Re-implementations
|
||||||
eModes Com_SessionMode_GetMode();
|
eModes Com_SessionMode_GetMode();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user