summaryrefslogtreecommitdiff
path: root/src/blitter/base.hpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2011-04-02 16:39:30 +0000
committerfrosch <frosch@openttd.org>2011-04-02 16:39:30 +0000
commitb18211bb9d1f8f758e814a5b5f6dc74e78183c51 (patch)
tree1fa7d4f5b289ca68bb97d0e167b36a80ee9b4eae /src/blitter/base.hpp
parent7659575cfa52b6fd9eea9c1256b325f84261e29f (diff)
downloadopenttd-b18211bb9d1f8f758e814a5b5f6dc74e78183c51.tar.xz
(svn r22291) -Add: a linewidth argument to GfxDrawLine() and Blitter::DrawLine().
Diffstat (limited to 'src/blitter/base.hpp')
-rw-r--r--src/blitter/base.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blitter/base.hpp b/src/blitter/base.hpp
index 3af376a15..cb76f856e 100644
--- a/src/blitter/base.hpp
+++ b/src/blitter/base.hpp
@@ -101,7 +101,7 @@ public:
*/
virtual void DrawRect(void *video, int width, int height, uint8 colour) = 0;
- void DrawLine(void *video, int x, int y, int x2, int y2, int screen_width, int screen_height, uint8 colour);
+ void DrawLine(void *video, int x, int y, int x2, int y2, int screen_width, int screen_height, uint8 colour, int width);
/**
* Copy from a buffer to the screen.