diff options
author | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2019-01-30 19:07:46 +0100 |
---|---|---|
committer | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2019-01-30 19:07:46 +0100 |
commit | 496d8f19fcad1acd466161ad389552ee93b70d87 (patch) | |
tree | b645ec092239bbe01d73edaae0da0f4131d21ed7 /core/bind/core_bind.cpp | |
parent | c21ca98e4c6e6228adefcc696b3ff6a1104c678e (diff) | |
download | redot-engine-496d8f19fcad1acd466161ad389552ee93b70d87.tar.gz |
Let memory stat functions return uint64_t
Diffstat (limited to 'core/bind/core_bind.cpp')
-rw-r--r-- | core/bind/core_bind.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/bind/core_bind.cpp b/core/bind/core_bind.cpp index e81468e888..f17d7372e2 100644 --- a/core/bind/core_bind.cpp +++ b/core/bind/core_bind.cpp @@ -592,17 +592,17 @@ struct Time { }; */ -int _OS::get_static_memory_usage() const { +uint64_t _OS::get_static_memory_usage() const { return OS::get_singleton()->get_static_memory_usage(); } -int _OS::get_static_memory_peak_usage() const { +uint64_t _OS::get_static_memory_peak_usage() const { return OS::get_singleton()->get_static_memory_peak_usage(); } -int _OS::get_dynamic_memory_usage() const { +uint64_t _OS::get_dynamic_memory_usage() const { return OS::get_singleton()->get_dynamic_memory_usage(); } |