summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorEv1lbl0w <ricasubtil@gmail.com>2021-03-05 21:48:11 +0000
committerEv1lbl0w <ricasubtil@gmail.com>2021-03-05 21:48:20 +0000
commit1f0b60c47d0a6ee9b4ecbaa9e1f66e8818d0d49d (patch)
tree12e9bd17cee06ae77760ee690fce38c482e52366 /core
parent3ff56719fc81899499a82d6f69f40de76633f897 (diff)
Fix negative VRAM values
Diffstat (limited to 'core')
-rw-r--r--core/core_bind.cpp2
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);