mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +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
|
\return C pointer represented by the parameter. 0 offset -> NULL
|
||||||
*/
|
*/
|
||||||
static inline pr_type_t *
|
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;
|
return o ? pr->pr_globals + o : 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue