From 14b8f6e594c8a80c220b58fa8ce7d33d8c509b3f Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 9 Nov 2013 06:48:15 +0000 Subject: [PATCH] (svn r25958) -Fix: overriding method of DrawLine was not updated when parameters were added making it non-functional --- src/blitter/null.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blitter/null.hpp b/src/blitter/null.hpp index 821e01be65..33ff88c234 100644 --- a/src/blitter/null.hpp +++ b/src/blitter/null.hpp @@ -24,7 +24,7 @@ public: /* virtual */ void *MoveTo(void *video, int x, int y) { return NULL; }; /* virtual */ void SetPixel(void *video, int x, int y, uint8 colour) {}; /* virtual */ void DrawRect(void *video, int width, int height, uint8 colour) {}; - /* virtual */ void DrawLine(void *video, int x, int y, int x2, int y2, int screen_width, int screen_height, uint8 colour, int width) {}; + /* virtual */ void DrawLine(void *video, int x, int y, int x2, int y2, int screen_width, int screen_height, uint8 colour, int width, int dash) {}; /* virtual */ void CopyFromBuffer(void *video, const void *src, int width, int height) {}; /* virtual */ void CopyToBuffer(const void *video, void *dst, int width, int height) {}; /* virtual */ void CopyImageToBuffer(const void *video, void *dst, int width, int height, int dst_pitch) {};