diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2018-10-28 21:11:53 +0100 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2018-10-28 21:11:53 +0100 |
commit | 3a9eeef84447c222a4638546d014e12b0098fe51 (patch) | |
tree | d36b25ebb530b57f8961af11c104b47b96d54cc4 /include/record_mixing.h | |
parent | 98d8dbfd8a2e6759a38d70573256c22fb386e07d (diff) |
Frontier, finish ranking hall
Diffstat (limited to 'include/record_mixing.h')
-rw-r--r-- | include/record_mixing.h | 30 |
1 files changed, 4 insertions, 26 deletions
diff --git a/include/record_mixing.h b/include/record_mixing.h index f1b74c143..0d50f46f9 100644 --- a/include/record_mixing.h +++ b/include/record_mixing.h @@ -1,35 +1,13 @@ #ifndef GUARD_RECORD_MIXING_H #define GUARD_RECORD_MIXING_H -// Exported type declarations -struct UnkRecordMixingStruct2a +struct PlayerHallRecords { - u8 playerId[4]; - u16 field_4; - u8 playerName[PLAYER_NAME_LENGTH + 1]; - u8 language; + struct RankingHall1P onePlayer[9][2]; + struct RankingHall2P twoPlayers[2]; }; -struct UnkRecordMixingStruct2b -{ - u8 playerId1[4]; - u8 playerId2[4]; - u16 field_8; - u8 playerName1[PLAYER_NAME_LENGTH + 1]; - u8 playerName2[PLAYER_NAME_LENGTH + 1]; - u8 language; -}; - -struct UnkRecordMixingStruct2 -{ - struct UnkRecordMixingStruct2a field_0[9][2]; - struct UnkRecordMixingStruct2b field_120[2]; -}; - -// Exported RAM declarations - -// Exported ROM declarations void sub_80E6BE8(void); -void sub_80E8260(struct UnkRecordMixingStruct2 *arg0); +void GetPlayerHallRecords(struct PlayerHallRecords *dst); #endif //GUARD_RECORD_MIXING_H |