Fixed compilation with GCC/Clang

error: use of undeclared identifier 'op'
error: no matching function for call to 'ListEnd'
error: no matching function for call to 'ListGetInt'
error: no matching function for call to 'ListGetDouble'
...
This commit is contained in:
alexey.lysiuk 2017-02-04 18:10:30 +02:00
commit e8c2444ddd
3 changed files with 3 additions and 3 deletions

View file

@ -462,7 +462,7 @@ static inline FColormapStyle * ListGetColormapStyle(va_list &tags)
return va_arg(tags, FColormapStyle *);
}
bool DCanvas::ParseDrawTextureTags (FTexture *img, double x, double y, DWORD tag, va_list tags, DrawParms *parms, bool fortext) const
bool DCanvas::ParseDrawTextureTags (FTexture *img, double x, double y, DWORD tag, va_list& tags, DrawParms *parms, bool fortext) const
{
INTBOOL boolval;
int intval;