From 0f25a709010b72dda45765f0dd6f6fc27893c64d Mon Sep 17 00:00:00 2001 From: tobid7 Date: Sat, 5 Sep 2026 14:47:41 +0200 Subject: [PATCH] Add missing GetDriverName to Os --- include/pd/drivers/os.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/pd/drivers/os.hpp b/include/pd/drivers/os.hpp index 13a0782..2d922be 100755 --- a/include/pd/drivers/os.hpp +++ b/include/pd/drivers/os.hpp @@ -26,6 +26,8 @@ class PD_API Os { static u64 GetTime() { return driver->GetTime(); } static u64 GetTimeNano() { return driver->GetTimeNano(); } + static const char* GetDriverName() { return driver->GetName(); } + private: static std::unique_ptr driver; };