aboutsummaryrefslogtreecommitdiff
path: root/engines/draci/screen.cpp
diff options
context:
space:
mode:
authorRobert Špalek2009-09-25 17:33:00 +0000
committerRobert Špalek2009-09-25 17:33:00 +0000
commit431780297e6db1f97733689a6c1485a624a61dc9 (patch)
treea391a26a5b0e466bb8f49a7285b4ff8ea521c216 /engines/draci/screen.cpp
parent180b3f1247e44c7167ca9578261b570357c11b7a (diff)
downloadscummvm-rg350-431780297e6db1f97733689a6c1485a624a61dc9.tar.gz
scummvm-rg350-431780297e6db1f97733689a6c1485a624a61dc9.tar.bz2
scummvm-rg350-431780297e6db1f97733689a6c1485a624a61dc9.zip
Added some more const's to the interface of Dragon History
svn-id: r44362
Diffstat (limited to 'engines/draci/screen.cpp')
-rw-r--r--engines/draci/screen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/draci/screen.cpp b/engines/draci/screen.cpp
index 5d3c612978..95673ca1cb 100644
--- a/engines/draci/screen.cpp
+++ b/engines/draci/screen.cpp
@@ -143,7 +143,7 @@ void Screen::fillScreen(uint8 colour) {
* @param r Which rectangle to draw
* colour The colour of the rectangle
*/
-void Screen::drawRect(Common::Rect &r, uint8 colour) {
+void Screen::drawRect(Common::Rect r, uint8 colour) {
// Clip the rectangle to screen size
r.clip(_surface->w, _surface->h);