From: binarymaster Date: Fri, 4 Aug 2017 15:12:32 +0000 (+0300) Subject: ImagingFormats: Fix undefined result warning X-Git-Url: http://deadsoftware.ru/gitweb?p=d2df-sdl.git;a=commitdiff_plain;h=50caedbae9bdb44929e9510ef7d5bcbef4d8890c ImagingFormats: Fix undefined result warning --- diff --git a/src/lib/vampimg/ImagingFormats.pas b/src/lib/vampimg/ImagingFormats.pas index b42b4ac..8326389 100644 --- a/src/lib/vampimg/ImagingFormats.pas +++ b/src/lib/vampimg/ImagingFormats.pas @@ -4234,6 +4234,7 @@ end; function GetBCPixelsSize(Format: TImageFormat; Width, Height: LongInt): LongInt; begin + Result := 0; raise ENotImplemented.Create(); end;