(svn r23194) -Codechange: don't cast away const needlessly

This commit is contained in:
rubidium
2011-11-12 08:26:30 +00:00
parent bd64bf6372
commit 4f87d2e88c
11 changed files with 25 additions and 25 deletions

View File

@@ -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.