blob: 3290bbebebee618fc526c0e96b18a32c8b188e28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#include "global.h"
#include "menu.h"
extern const u8 gOtherText_BattleResults[];
extern const u8 gOtherText_WinLoseDraw[];
void PrintLinkBattleWinsLossesDraws(void *);
void PrintLinkBattleRecord(void *, u8);
void ShowLinkBattleRecords(void) {
s32 i;
MenuDrawTextWindow(1, 0, 28, 18);
sub_8072BD8((u8 *) gOtherText_BattleResults, 0, 1, 240);
PrintLinkBattleWinsLossesDraws(gSaveBlock1.linkBattleRecords);
#if ENGLISH
MenuPrint(gOtherText_WinLoseDraw, 12, 6);
#elif GERMAN
MenuPrint_PixelCoords((u8 *) gOtherText_WinLoseDraw, 88, 48, 1);
#endif
for (i = 0; i < 5; i++)
{
PrintLinkBattleRecord(gSaveBlock1.linkBattleRecords[i], 6 + (i + 1) * 2);
}
}
|