Changeset - r20911:6ec0b25ae32a
[Not reviewed]
master
0 1 0
rubidium - 11 years ago 2013-11-09 06:48:15
rubidium@openttd.org
(svn r25958) -Fix: overriding method of DrawLine was not updated when parameters were added making it non-functional
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/blitter/null.hpp
Show inline comments
 
@@ -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) {};
0 comments (0 inline, 0 general)