aboutsummaryrefslogtreecommitdiff
path: root/graphics/primitives.h
diff options
context:
space:
mode:
authorJohannes Schickel2007-11-06 22:34:55 +0000
committerJohannes Schickel2007-11-06 22:34:55 +0000
commit377ed4b1b4fc4817eb23c0ae31768b37ca3455d2 (patch)
treeca32db4d5e1e43e93942ca70258dac6af8debf0d /graphics/primitives.h
parent9038ee91154c1a9377e596c1c0a44ccbc111e7a1 (diff)
downloadscummvm-rg350-377ed4b1b4fc4817eb23c0ae31768b37ca3455d2.tar.gz
scummvm-rg350-377ed4b1b4fc4817eb23c0ae31768b37ca3455d2.tar.bz2
scummvm-rg350-377ed4b1b4fc4817eb23c0ae31768b37ca3455d2.zip
Removed unnecessary extern.
svn-id: r29440
Diffstat (limited to 'graphics/primitives.h')
-rw-r--r--graphics/primitives.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/primitives.h b/graphics/primitives.h
index e062efed37..2bc44d6644 100644
--- a/graphics/primitives.h
+++ b/graphics/primitives.h
@@ -27,8 +27,9 @@
namespace Graphics {
-extern void drawLine(int x0, int y0, int x1, int y1, int color, void (*plotProc)(int, int, int, void *), void *data);
+void drawLine(int x0, int y0, int x1, int y1, int color, void (*plotProc)(int, int, int, void *), void *data);
} // End of namespace Graphics
#endif
+