mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Fix warnings
git-svn-id: https://svn.eduke32.com/eduke32@793 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
b23047f722
commit
567288d392
2 changed files with 2 additions and 2 deletions
|
@ -5579,7 +5579,7 @@ static void moveeffectors(void) //STATNUM 3
|
|||
|
||||
if (s->owner == -1)
|
||||
{
|
||||
Bsprintf(tempbuf,"Could not find any locators for SE# 6 and 14 with a hitag of %d.\n",t[3]);
|
||||
Bsprintf(tempbuf,"Could not find any locators for SE# 6 and 14 with a hitag of %td.\n",t[3]);
|
||||
gameexit(tempbuf);
|
||||
}
|
||||
|
||||
|
|
|
@ -293,7 +293,7 @@ static int getsound(unsigned int num)
|
|||
(l < 12288))
|
||||
{
|
||||
g_sounds[num].lock = 199;
|
||||
allocache((int *)&g_sounds[num].ptr,l,(char *)&g_sounds[num].lock);
|
||||
allocache((intptr_t *)&g_sounds[num].ptr,l,(char *)&g_sounds[num].lock);
|
||||
if (g_sounds[num].ptr != NULL)
|
||||
kread(fp, g_sounds[num].ptr , l);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue