mirror of
https://github.com/holub/mame
synced 2025-04-20 23:42:22 +03:00
added missing initializations in default rectangle constructor (nw)
This commit is contained in:
parent
0ea68a4327
commit
be0e8a3256
@ -73,7 +73,8 @@ class rectangle
|
||||
{
|
||||
public:
|
||||
// construction/destruction
|
||||
rectangle() { }
|
||||
rectangle()
|
||||
: min_x(0), max_x(0), min_y(0), max_y(0) { }
|
||||
rectangle(INT32 minx, INT32 maxx, INT32 miny, INT32 maxy)
|
||||
: min_x(minx), max_x(maxx), min_y(miny), max_y(maxy) { }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user