mirror of
https://github.com/zeldaret/tp
synced 2026-06-01 17:58:04 -04:00
format
This commit is contained in:
@@ -55,10 +55,8 @@ struct TLinkList : public TNodeLinkList {
|
||||
iterator(TNodeLinkList::iterator iter) : TNodeLinkList::iterator(iter) {}
|
||||
};
|
||||
|
||||
TLinkListNode* Element_toNode(T* element) const {
|
||||
return &element->mListNode;
|
||||
}
|
||||
|
||||
TLinkListNode* Element_toNode(T* element) const { return &element->mListNode; }
|
||||
|
||||
void Insert(TLinkList::iterator iter, T* element) {
|
||||
TLinkListNode* node = Element_toNode(element);
|
||||
TNodeLinkList::Insert(iter, node);
|
||||
|
||||
@@ -51,9 +51,7 @@ public:
|
||||
*((u8*)mBuf + (field_0x20 + 2) * param_0) = param_1;
|
||||
}
|
||||
|
||||
u8* getLinePtr(int param_0) const {
|
||||
return ((u8*)mBuf + (field_0x20 + 2) * param_0 + 1);
|
||||
}
|
||||
u8* getLinePtr(int param_0) const { return ((u8*)mBuf + (field_0x20 + 2) * param_0 + 1); }
|
||||
|
||||
int diffIndex(int param_0, int param_1) const {
|
||||
int diff = param_1 - param_0;
|
||||
@@ -64,6 +62,7 @@ public:
|
||||
}
|
||||
|
||||
/* 0x18 */ JGadget::TLinkListNode mListNode;
|
||||
|
||||
private:
|
||||
/* 0x20 */ u32 field_0x20;
|
||||
/* 0x24 */ u32 field_0x24;
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
#include "MSL_C.PPCEABI.bare.H/MSL_Common/Src/char_io.h"
|
||||
#include "MSL_C.PPCEABI.bare.H/MSL_Common/Src/printf.h"
|
||||
#include "Runtime.PPCEABI.H/__va_arg.h"
|
||||
#include "m_Do/m_Do_main.h"
|
||||
#include "dolphin/types.h"
|
||||
#include "m_Do/m_Do_main.h"
|
||||
|
||||
void my_PutString(const char*);
|
||||
void mDoPrintf_vprintf_Interrupt(char const*, __va_list_struct*);
|
||||
|
||||
Reference in New Issue
Block a user