mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
Silence pointer truncation warnings in Ppmd7.c
This commit is contained in:
parent
995721836b
commit
d190da9e2e
1 changed files with 3 additions and 3 deletions
|
@ -276,12 +276,12 @@ static void *ShrinkUnits(CPpmd7 *p, void *oldPtr, unsigned oldNU, unsigned newNU
|
||||||
return oldPtr;
|
return oldPtr;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define SUCCESSOR(p) ((CPpmd_Void_Ref)((p)->SuccessorLow | ((UInt32)(p)->SuccessorHigh << 16)))
|
#define SUCCESSOR(p) ((CPpmd_Void_Ref)(size_t)((p)->SuccessorLow | ((UInt32)(p)->SuccessorHigh << 16)))
|
||||||
|
|
||||||
static void SetSuccessor(CPpmd_State *p, CPpmd_Void_Ref v)
|
static void SetSuccessor(CPpmd_State *p, CPpmd_Void_Ref v)
|
||||||
{
|
{
|
||||||
(p)->SuccessorLow = (UInt16)((UInt32)(v) & 0xFFFF);
|
(p)->SuccessorLow = (UInt16)((UInt32)((size_t)v) & 0xFFFF);
|
||||||
(p)->SuccessorHigh = (UInt16)(((UInt32)(v) >> 16) & 0xFFFF);
|
(p)->SuccessorHigh = (UInt16)(((UInt32)((size_t)v) >> 16) & 0xFFFF);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void RestartModel(CPpmd7 *p)
|
static void RestartModel(CPpmd7 *p)
|
||||||
|
|
Loading…
Reference in a new issue