From d0f43d24b7f2e579d570a90941d5c30a994656f5 Mon Sep 17 00:00:00 2001 From: James Benton Date: Wed, 1 Nov 2017 10:59:44 +0000 Subject: [PATCH] Fix size of OSThread structure --- include/coreinit/thread.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/coreinit/thread.h b/include/coreinit/thread.h index bff2581..04ff2d7 100644 --- a/include/coreinit/thread.h +++ b/include/coreinit/thread.h @@ -208,7 +208,7 @@ struct OSThread //! Queue of threads waiting for a thread to be suspended. OSThreadQueue suspendQueue; - UNKNOWN(0x69c - 0x5f4); + UNKNOWN(0x6a0 - 0x5f4); }; #pragma pack(pop) CHECK_OFFSET(OSThread, 0x320, tag); @@ -238,7 +238,7 @@ CHECK_OFFSET(OSThread, 0x5d8, requestFlag); CHECK_OFFSET(OSThread, 0x5dc, needSuspend); CHECK_OFFSET(OSThread, 0x5e0, suspendResult); CHECK_OFFSET(OSThread, 0x5e4, suspendQueue); -CHECK_SIZE(OSThread, 0x69c); +CHECK_SIZE(OSThread, 0x6a0); /**