Settings: Change resolution scaling to an integer instead of a float

This commit is contained in:
James Rowe
2017-12-23 16:10:25 -07:00
parent c3c684cd2b
commit c821c14908
9 changed files with 27 additions and 87 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ struct Rectangle {
T right;
T bottom;
Rectangle() {}
Rectangle() = default;
Rectangle(T left, T top, T right, T bottom)
: left(left), top(top), right(right), bottom(bottom) {}