Add missing GetDriverName to Os

This commit is contained in:
2026-09-05 14:47:41 +02:00
parent 6a22b26a3d
commit 0f25a70901
+2
View File
@@ -26,6 +26,8 @@ class PD_API Os {
static u64 GetTime() { return driver->GetTime(); } static u64 GetTime() { return driver->GetTime(); }
static u64 GetTimeNano() { return driver->GetTimeNano(); } static u64 GetTimeNano() { return driver->GetTimeNano(); }
static const char* GetDriverName() { return driver->GetName(); }
private: private:
static std::unique_ptr<OsDriver> driver; static std::unique_ptr<OsDriver> driver;
}; };