m_Do_MemCard/d_file_select wii/debug work (#2976)

* m_Do_MemCard/d_file_select wii/debug work

* fix builds
This commit is contained in:
TakaRikka
2025-12-20 18:30:04 -08:00
committed by GitHub
parent 762159a990
commit bd0c601a52
16 changed files with 3923 additions and 1778 deletions
+2 -2
View File
@@ -1216,8 +1216,8 @@ inline void dComIfGs_setCollectClothes(u8 i_clothesNo) {
g_dComIfG_gameInfo.info.getPlayer().getCollect().setCollect(COLLECT_CLOTHING, i_clothesNo);
}
inline void dComIfGs_setCardToMemory(char* card_ptr, int dataNum) {
g_dComIfG_gameInfo.info.card_to_memory(card_ptr, dataNum);
inline void dComIfGs_setCardToMemory(u8* card_ptr, int dataNum) {
g_dComIfG_gameInfo.info.card_to_memory((char*)card_ptr, dataNum);
}
inline void dComIfGs_setRodTypeLevelUp() {
+1 -1
View File
@@ -38,7 +38,7 @@ public:
virtual ~dFile_warning_c();
u8 getStatus() { return mStatus; }
BOOL getStatus() { return mStatus != 0; }
void draw() { _draw(); }
/* 0x04 */ JKRArchive* mpArchive;
+294 -138
View File
File diff suppressed because it is too large Load Diff
+1
View File
@@ -469,6 +469,7 @@ class dSv_player_info_c {
public:
void init();
char* getLinkName() { return mPlayerName; }
const char* getPlayerName() const { return mPlayerName; }
char* getHorseName() { return mHorseName; }
void setPlayerName(const char* i_name) { strcpy((char*)mPlayerName, i_name); }
void setHorseName(const char* i_name) { strcpy((char*)mHorseName, i_name); }