aboutsummaryrefslogtreecommitdiff
path: root/graphics/primitives.h
diff options
context:
space:
mode:
authorMatthew Hoops2011-10-27 19:20:02 -0400
committerMatthew Hoops2011-10-27 19:20:02 -0400
commit627684ca73833117425f3fd9d2257efb2157cb3c (patch)
tree1d88072ce28f55941320338e71ff98ce1f0d1805 /graphics/primitives.h
parent1bd2480f5f3de254928bbf68127a219a04fb0158 (diff)
downloadscummvm-rg350-627684ca73833117425f3fd9d2257efb2157cb3c.tar.gz
scummvm-rg350-627684ca73833117425f3fd9d2257efb2157cb3c.tar.bz2
scummvm-rg350-627684ca73833117425f3fd9d2257efb2157cb3c.zip
GRAPHICS: Make drawThickLine take a thickness in both x and y directions
Diffstat (limited to 'graphics/primitives.h')
-rw-r--r--graphics/primitives.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/primitives.h b/graphics/primitives.h
index 0ab2dabcd8..f0780afc2e 100644
--- a/graphics/primitives.h
+++ b/graphics/primitives.h
@@ -25,7 +25,7 @@
namespace Graphics {
void drawLine(int x0, int y0, int x1, int y1, int color, void (*plotProc)(int, int, int, void *), void *data);
-void drawThickLine(int x0, int y0, int x1, int y1, int thickness, int color, void (*plotProc)(int, int, int, void *), void *data);
+void drawThickLine(int x0, int y0, int x1, int y1, int penX, int penY, int color, void (*plotProc)(int, int, int, void *), void *data);
} // End of namespace Graphics