diff options
author | Ev1lbl0w <ricasubtil@gmail.com> | 2021-03-05 21:48:11 +0000 |
---|---|---|
committer | Ev1lbl0w <ricasubtil@gmail.com> | 2021-03-05 21:48:20 +0000 |
commit | 1f0b60c47d0a6ee9b4ecbaa9e1f66e8818d0d49d (patch) | |
tree | 12e9bd17cee06ae77760ee690fce38c482e52366 /core | |
parent | 3ff56719fc81899499a82d6f69f40de76633f897 (diff) |
Fix negative VRAM values
Diffstat (limited to 'core')
-rw-r--r-- | core/core_bind.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/core_bind.cpp b/core/core_bind.cpp index 47c75cfa28..e7a77384da 100644 --- a/core/core_bind.cpp +++ b/core/core_bind.cpp @@ -566,7 +566,7 @@ struct _OSCoreBindImg { void _OS::print_all_textures_by_size() { List<_OSCoreBindImg> imgs; - int total = 0; + uint64_t total = 0; { List<Ref<Resource>> rsrc; ResourceCache::get_cached_resources(&rsrc); |