hle: Stub some service calls used by the home menu. (#6675)

This commit is contained in:
Steveice10
2023-07-07 22:05:38 -07:00
committed by GitHub
parent 26e3f96983
commit 662bb9ba77
22 changed files with 187 additions and 22 deletions

View File

@ -110,8 +110,13 @@ public:
return sizeof(shared_page);
}
/// Gets the system time in milliseconds since the year 2000.
u64 GetSystemTimeSince2000() const;
/// Gets the system time in milliseconds since the year 1900.
u64 GetSystemTimeSince1900() const;
private:
u64 GetSystemTime() const;
void UpdateTimeCallback(std::uintptr_t user_data, int cycles_late);
Core::Timing& timing;
Core::TimingEventType* update_time_event;