mirror of
https://github.com/ZDoom/acc.git
synced 2024-11-15 00:41:30 +00:00
- Fix VC++ 6 warnings.
SVN r3853 (trunk)
This commit is contained in:
parent
74d159f4d5
commit
57040693cd
1 changed files with 2 additions and 2 deletions
4
parse.c
4
parse.c
|
@ -1629,7 +1629,7 @@ static void LeadingLineSpecial(boolean executewait)
|
|||
{
|
||||
ERR_Error(ERR_SPECIAL_RANGE, YES);
|
||||
}
|
||||
PC_AppendByte(specialValue);
|
||||
PC_AppendByte((U_BYTE)specialValue);
|
||||
}
|
||||
if(executewait)
|
||||
{
|
||||
|
@ -1658,7 +1658,7 @@ static void LeadingLineSpecial(boolean executewait)
|
|||
}
|
||||
}
|
||||
PC_AppendCmd((argCount-1)+(useintform?PCD_LSPEC1DIRECT:PCD_LSPEC1DIRECTB));
|
||||
PC_AppendByte(specialValue);
|
||||
PC_AppendByte((U_BYTE)specialValue);
|
||||
}
|
||||
if (useintform)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue