From 57252706775629c92d70ac15c7d10b317209a7ce Mon Sep 17 00:00:00 2001 From: Martmists Date: Tue, 8 Jul 2025 19:00:00 +0200 Subject: [PATCH] Convert Tick from typedef to struct This should make it match the symbol `nn::os::ConvertToTimeSpan(nn::os::Tick)` from the SDK --- include/nn/os.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/nn/os.h b/include/nn/os.h index 380259d..61cea8c 100644 --- a/include/nn/os.h +++ b/include/nn/os.h @@ -39,7 +39,9 @@ struct InterProcessEventType { }; } // namespace detail -typedef u64 Tick; +struct Tick { + u64 value; +}; struct LightEventType { std::aligned_storage_t<0xc, 4> storage;