diff options
author | Johannes Schickel | 2013-08-06 03:51:49 +0200 |
---|---|---|
committer | Johannes Schickel | 2013-08-06 03:51:49 +0200 |
commit | 363a5a95cf9b6f69ba9b04615022431d3f79dbc6 (patch) | |
tree | a684d081877b7581c14b35c76bd24b2c125a63e5 /graphics | |
parent | 911c74e82c7653da01bca6398149deb7013d7378 (diff) | |
download | scummvm-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.h | 2 |
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. */ |