Reordered initialization list for Graphics::Surface to kill tons of warnings gcc started spewing out after robiwatts changed the order of data members for benefit of ARM.
svn-id: r30842
This commit is contained in:
parent
435c437f6d
commit
bd4a2f721e
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ struct Surface {
|
|||
uint16 pitch;
|
||||
void *pixels;
|
||||
uint8 bytesPerPixel;
|
||||
Surface() : pixels(0), w(0), h(0), pitch(0), bytesPerPixel(0) {}
|
||||
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__
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue