diff --git a/Source/Core/Common/MathUtil.h b/Source/Core/Common/MathUtil.h
index b8642bf80d..253ac5c2a0 100644
--- a/Source/Core/Common/MathUtil.h
+++ b/Source/Core/Common/MathUtil.h
@@ -117,10 +117,10 @@ double ApproximateReciprocal(double val);
 template<class T>
 struct Rectangle
 {
-	T left;
-	T top;
-	T right;
-	T bottom;
+	T left{};
+	T top{};
+	T right{};
+	T bottom{};
 
 	Rectangle()
 	{ }