diff options
author | Max Horn | 2009-01-01 21:32:30 +0000 |
---|---|---|
committer | Max Horn | 2009-01-01 21:32:30 +0000 |
commit | 9752882f8bbe6070f69638d3c54156a1c0e61204 (patch) | |
tree | b2b4c9f5d2193d3f6f8086f3066bf9f12fcfebc8 /graphics/surface.h | |
parent | 6561a7bf36a99b01bbebf926e9805308a3e20b05 (diff) | |
download | scummvm-rg350-9752882f8bbe6070f69638d3c54156a1c0e61204.tar.gz scummvm-rg350-9752882f8bbe6070f69638d3c54156a1c0e61204.tar.bz2 scummvm-rg350-9752882f8bbe6070f69638d3c54156a1c0e61204.zip |
Fingolfin says: If an #ifdef __SYMBIAN32__ is needed here, the Symbian folks should add it. In the meantime, this FIXME comment serves no purpose :)
svn-id: r35652
Diffstat (limited to 'graphics/surface.h')
-rw-r--r-- | graphics/surface.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/graphics/surface.h b/graphics/surface.h index 2d168a10dd..e6b31e3ccf 100644 --- a/graphics/surface.h +++ b/graphics/surface.h @@ -47,7 +47,6 @@ struct Surface { Surface() : w(0), h(0), pitch(0), pixels(0), bytesPerPixel(0) {} inline const void *getBasePtr(int x, int y) const { - // SumthinWicked says: I was getting a typecast error here from GCC/UIQ: might need an #ifdef __SYMBIAN32__ return static_cast<const void *>(static_cast<byte *>(pixels) + y * pitch + x * bytesPerPixel); } |