From 4f87d2e88c4b42f4ae4a5c7956f2287740ef174b Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 12 Nov 2011 08:26:30 +0000 Subject: (svn r23194) -Codechange: don't cast away const needlessly --- src/blitter/base.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/blitter/base.hpp') 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. -- cgit v1.2.3-54-g00ecf