Previous 199869 Revisions Next

r19835 Wednesday 26th December, 2012 at 13:15:11 UTC by Oliver Stöneberg
added missing initializations in default rectangle constructor (nw)
[src/lib/util]bitmap.h

trunk/src/lib/util/bitmap.h
r19834r19835
7373{
7474public:
7575   // construction/destruction
76   rectangle() { }
76   rectangle()
77      : min_x(0), max_x(0), min_y(0), max_y(0) { }
7778   rectangle(INT32 minx, INT32 maxx, INT32 miny, INT32 maxy)
7879      : min_x(minx), max_x(maxx), min_y(miny), max_y(maxy) { }
7980

Previous 199869 Revisions Next


© 1997-2024 The MAME Team