1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

Let memory stat functions return uint64_t

This commit is contained in:
Pedro J. Estébanez
2019-01-30 19:07:46 +01:00
parent c21ca98e4c
commit 496d8f19fc
4 changed files with 14 additions and 14 deletions

View File

@@ -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();
}