summaryrefslogtreecommitdiff
path: root/src/blitter/base.hpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2011-11-12 08:26:30 +0000
committerrubidium <rubidium@openttd.org>2011-11-12 08:26:30 +0000
commit4f87d2e88c4b42f4ae4a5c7956f2287740ef174b (patch)
treed390107524182c8276e616c20612708f9c893f7d /src/blitter/base.hpp
parentbd64bf6372399bad1a92565ae7d3c243658d241f (diff)
downloadopenttd-4f87d2e88c4b42f4ae4a5c7956f2287740ef174b.tar.xz
(svn r23194) -Codechange: don't cast away const needlessly
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 21d42d64c..f52f414f1 100644
--- a/src/blitter/base.hpp
+++ b/src/blitter/base.hpp
@@ -87,7 +87,7 @@ public:
* @param y How much you want to scroll to the bottom.
* @return A new destination pointer moved the the requested place.
*/
- virtual void *MoveTo(const void *video, int x, int y) = 0;
+ virtual void *MoveTo(void *video, int x, int y) = 0;
/**
* Draw a pixel with a given colour on the video-buffer.