diff options
author | red031000 <rubenru09@aol.com> | 2020-05-18 20:16:42 +0100 |
---|---|---|
committer | red031000 <rubenru09@aol.com> | 2020-05-18 20:16:42 +0100 |
commit | d8dcd1fef93929fc8905ee62c2bf627cb8e8db25 (patch) | |
tree | b2a3cf8c66fc00bc77a34755e25ac54d44097455 /arm9/lib/include/OS_mutex.h | |
parent | 2ac260c49fa1203c27d96fc792a562460e0b4724 (diff) |
remove pragma
Diffstat (limited to 'arm9/lib/include/OS_mutex.h')
-rw-r--r-- | arm9/lib/include/OS_mutex.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arm9/lib/include/OS_mutex.h b/arm9/lib/include/OS_mutex.h index abd79724..5db66fbe 100644 --- a/arm9/lib/include/OS_mutex.h +++ b/arm9/lib/include/OS_mutex.h @@ -8,13 +8,11 @@ #include "types.h" #include "OS_thread.h" -#pragma warn_padding off //apparently needed? struct OSMutex { OSThreadQueue queue; OSThread *thread; s32 count; OSMutexLink link; }; -#pragma warn_padding reset #endif //POKEDIAMOND_OS_MUTEX_H |