summaryrefslogtreecommitdiff
path: root/src/blitter
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2013-11-09 06:48:15 +0000
committerrubidium <rubidium@openttd.org>2013-11-09 06:48:15 +0000
commit14b8f6e594c8a80c220b58fa8ce7d33d8c509b3f (patch)
tree0cb6e2de77b4e95dda0ea003f6694e95115f0a65 /src/blitter
parentc04d635ddb35db736864273df655803a202ac80b (diff)
downloadopenttd-14b8f6e594c8a80c220b58fa8ce7d33d8c509b3f.tar.xz
(svn r25958) -Fix: overriding method of DrawLine was not updated when parameters were added making it non-functional
Diffstat (limited to 'src/blitter')
-rw-r--r--src/blitter/null.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blitter/null.hpp b/src/blitter/null.hpp
index 821e01be6..33ff88c23 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) {};