Skip to content

Commit

Permalink
fix wii build
Browse files Browse the repository at this point in the history
  • Loading branch information
TakaRikka committed Feb 3, 2024
1 parent fae1219 commit 10bb12d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions external/libtp_c/include/dynamic_link.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
#include "dolphin/os/OS.h"
#include "JSystem/JKernel/JKRExpHeap.h"

struct DynamicModuleControlBase {
struct DynamicModuleControlBase_ {
/* 0x00 */ u16 mLinkCount;
/* 0x02 */ u16 mDoLinkCount;
/* 0x04 */ DynamicModuleControlBase* mPrev;
/* 0x08 */ DynamicModuleControlBase* mNext;
/* 0x04 */ DynamicModuleControlBase_* mPrev;
/* 0x08 */ DynamicModuleControlBase_* mNext;
/* 0x0C */ void* vtable;
};

class mDoDvdThd_callback_c;
struct DynamicModuleControl : DynamicModuleControlBase {
struct DynamicModuleControl : DynamicModuleControlBase_ {
/* 0x10 */ OSModuleInfo* mModule;
/* 0x14 */ void* mBss;
/* 0x18 */ u32 unk_24;
Expand Down

0 comments on commit 10bb12d

Please sign in to comment.