Merge pull request #39189 from touilleMan/issue-38925

Unify OS.get_system_time_* and OS.get_unix_time
This commit is contained in:
Rémi Verschelde
2020-06-15 23:57:16 +02:00
committed by GitHub
9 changed files with 20 additions and 90 deletions

View File

@@ -83,15 +83,7 @@ uint64_t OS::get_splash_tick_msec() const {
return _msec_splash;
}
uint64_t OS::get_unix_time() const {
return 0;
}
uint64_t OS::get_system_time_secs() const {
return 0;
}
uint64_t OS::get_system_time_msecs() const {
double OS::get_unix_time() const {
return 0;
}