aboutsummaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorJohannes Schickel2013-08-06 03:51:49 +0200
committerJohannes Schickel2013-08-06 03:51:49 +0200
commit363a5a95cf9b6f69ba9b04615022431d3f79dbc6 (patch)
treea684d081877b7581c14b35c76bd24b2c125a63e5 /graphics
parent911c74e82c7653da01bca6398149deb7013d7378 (diff)
downloadscummvm-rg350-363a5a95cf9b6f69ba9b04615022431d3f79dbc6.tar.gz
scummvm-rg350-363a5a95cf9b6f69ba9b04615022431d3f79dbc6.tar.bz2
scummvm-rg350-363a5a95cf9b6f69ba9b04615022431d3f79dbc6.zip
GRAPHICS: Make Surface::pixels protected.
Diffstat (limited to 'graphics')
-rw-r--r--graphics/surface.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/graphics/surface.h b/graphics/surface.h
index c64f2363e6..8e1e696121 100644
--- a/graphics/surface.h
+++ b/graphics/surface.h
@@ -61,11 +61,13 @@ struct Surface {
*/
uint16 pitch;
+protected:
/**
* The surface's pixel data.
*/
void *pixels;
+public:
/**
* The pixel format of the surface.
*/