SimpleWindow columns for (some) overflow

This commit is contained in:
2022-08-29 16:35:40 +00:00
parent 66646dfcbe
commit e0d983b225

View File

@@ -130,8 +130,9 @@ class Prelude {
static function _max(values:Array<Dynamic>):Dynamic {
var max = values[0];
for (value in values.slice(1))
for (value in values.slice(1)) {
max = Math.max(max, value);
}
return max;
}