https://github.com/rheit/zdoom/blob/6d4 ... t.cpp#L153
These two lines in this block of code:
Code: Select all
// We don't handle these. :(
case DTA_DestWidth:
case DTA_DestHeight:
*(DWORD *)tags = TAG_IGNORE; <--
data = va_arg (tags, DWORD);
break;
// Translation is specified explicitly by the text.
case DTA_Translation:
*(DWORD *)tags = TAG_IGNORE; <--
ptrval = va_arg (tags, void*);
break;
Solution: Change these offending lines to:
Code: Select all
assert(false && "unsupported");