mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 15:01:41 +00:00
Use the right type for VM pointers.
Probably more of these hiding in the code.
This commit is contained in:
parent
bceb98e5a4
commit
ca6dd204b3
1 changed files with 1 additions and 1 deletions
|
@ -1554,7 +1554,7 @@ struct progs_s {
|
|||
\return C pointer represented by the parameter. 0 offset -> NULL
|
||||
*/
|
||||
static inline pr_type_t *
|
||||
PR_GetPointer (progs_t *pr, pr_uint_t o)
|
||||
PR_GetPointer (progs_t *pr, pointer_t o)
|
||||
{
|
||||
return o ? pr->pr_globals + o : 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue