mirror of
https://github.com/godotengine/godot.git
synced 2025-10-27 03:34:17 +00:00
Fix negative VRAM values
This commit is contained in:
parent
3ff56719fc
commit
1f0b60c47d
8 changed files with 8 additions and 8 deletions
|
|
@ -343,7 +343,7 @@ void ScriptEditorDebugger::_parse_message(const String &p_msg, const Array &p_da
|
|||
DebuggerMarshalls::ResourceUsage usage;
|
||||
usage.deserialize(p_data);
|
||||
|
||||
int total = 0;
|
||||
uint64_t total = 0;
|
||||
|
||||
for (List<DebuggerMarshalls::ResourceInfo>::Element *E = usage.infos.front(); E; E = E->next()) {
|
||||
TreeItem *it = vmem_tree->create_item(root);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue