Browse Source

Rect: fix serialization

Konstantin P 2 years ago
parent
commit
6988b288ba
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/Rect.h

+ 1 - 1
lib/Rect.h

@@ -160,7 +160,7 @@ public:
 		h & x;
 		h & y;
 		h & w;
-		h & h;
+		h & this->h;
 	}
 };