aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--graphics/surface.h1
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);
}