diff options
Diffstat (limited to 'engines/avalanche/graphics.h')
-rw-r--r-- | engines/avalanche/graphics.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/avalanche/graphics.h b/engines/avalanche/graphics.h index 787eb6ded3..c4c1e85b02 100644 --- a/engines/avalanche/graphics.h +++ b/engines/avalanche/graphics.h @@ -88,14 +88,14 @@ public: void drawSprite(const SpriteInfo &sprite, byte picnum, int16 x, int16 y); - Common::Point drawArc(const ::Graphics::Surface &surface, int16 x, int16 y, int16 stAngle, int16 endAngle, uint16 radius, byte color); + Common::Point drawArc(::Graphics::Surface &surface, int16 x, int16 y, int16 stAngle, int16 endAngle, uint16 radius, byte color); // Taken from Free Pascal's Procedure InternalEllipseDefault. Used to replace Pascal's procedure arc. // Returns the end point of the arc. (Needed in Lucerna::lucerna_clock().) // TODO: Make it more accurate later. - void drawPieSlice(const ::Graphics::Surface &surface, int16 x, int16 y, int16 stAngle, int16 endAngle, uint16 radius, byte color); + void drawPieSlice(::Graphics::Surface &surface, int16 x, int16 y, int16 stAngle, int16 endAngle, uint16 radius, byte color); - void drawTriangle(const ::Graphics::Surface &surface, Common::Point *p, byte color); + void drawTriangle(::Graphics::Surface &surface, Common::Point *p, byte color); |