Fix negative VRAM values

This commit is contained in:
Ev1lbl0w 2021-03-09 09:51:17 +00:00
parent f79b8474ab
commit bae4b0c952
No known key found for this signature in database
GPG key ID: B383693E3746E58A
12 changed files with 12 additions and 12 deletions

View file

@ -717,7 +717,7 @@ void ScriptEditorDebugger::_parse_message(const String &p_msg, const Array &p_da
vmem_tree->clear();
TreeItem *root = vmem_tree->create_item();
int total = 0;
uint64_t total = 0;
for (int i = 0; i < p_data.size(); i += 4) {