aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/android/texture.h
diff options
context:
space:
mode:
authordhewg2011-03-15 23:01:09 +0100
committerdhewg2011-03-16 20:54:25 +0100
commite71c2cf850388b2a25200d544d2fb422525b4c88 (patch)
tree8bb297913ef7217cc02288907f5b129706dc84e7 /backends/platform/android/texture.h
parent6b346c1fe04a8e3ed770d6246532391591265ea2 (diff)
downloadscummvm-rg350-e71c2cf850388b2a25200d544d2fb422525b4c88.tar.gz
scummvm-rg350-e71c2cf850388b2a25200d544d2fb422525b4c88.tar.bz2
scummvm-rg350-e71c2cf850388b2a25200d544d2fb422525b4c88.zip
ANDROID: Constify getDrawRect()
Diffstat (limited to 'backends/platform/android/texture.h')
-rw-r--r--backends/platform/android/texture.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/android/texture.h b/backends/platform/android/texture.h
index 4f2bfe4c4f..64489da0a4 100644
--- a/backends/platform/android/texture.h
+++ b/backends/platform/android/texture.h
@@ -73,7 +73,7 @@ public:
_draw_rect = Common::Rect(x1, y1, x2, y2);
}
- inline const Common::Rect &getDrawRect() {
+ inline const Common::Rect &getDrawRect() const {
return _draw_rect;
}