mirror of
https://github.com/ZDoom/Raze.git
synced 2025-05-30 17:01:03 +00:00
SW: Add TrackerCast where needed for printf.
Patch from Striker. git-svn-id: https://svn.eduke32.com/eduke32@7500 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
61446c0995
commit
28ec01ef75
6 changed files with 25 additions and 25 deletions
|
@ -2006,7 +2006,7 @@ DumpSounds(void)
|
|||
if (vp->owner >= 0)
|
||||
{
|
||||
SPRITEp sp = &sprite[vp->owner];
|
||||
sprintf(ds,"sp->picnum=%d, sp->hitag=%d, sp->lotag=%d, sp->owner=%d\n",sp->picnum,sp->hitag,sp->lotag,sp->owner);
|
||||
sprintf(ds,"sp->picnum=%d, sp->hitag=%d, sp->lotag=%d, sp->owner=%d\n",TrackerCast(sp->picnum), TrackerCast(sp->hitag), TrackerCast(sp->lotag), TrackerCast(sp->owner));
|
||||
DebugWriteString(ds);
|
||||
}
|
||||
vp = vp->next;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue