1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-05 19:31:35 +00:00

Fixed String::humanize_size crash.

Close #35872
This commit is contained in:
dankan1890
2020-02-03 17:59:24 +01:00
parent 0edcb8ed58
commit ca0ee767cb

View File

@@ -3324,7 +3324,7 @@ String String::humanize_size(uint64_t p_size) {
int prefix_idx = 0;
while (prefix_idx < prefixes.size() && p_size > (_div * 1024)) {
while (prefix_idx < prefixes.size() - 1 && p_size > (_div * 1024)) {
_div *= 1024;
prefix_idx++;
}