You've already forked godot
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:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user