Skip to content

Commit

Permalink
Update main.c
Browse files Browse the repository at this point in the history
  • Loading branch information
israpps committed Jan 21, 2022
1 parent 0068bcd commit 1f340b3
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions main.c
Expand Up @@ -318,6 +318,19 @@ static void Show_About_uLE(void)
sprintf(TextRow, " commit: %s (based on commit 41e4ebe)", GIT_HASH);
PrintPos(04, hpos, TextRow);
PrintPos(05, hpos, "Mod created by: Matias Israelson and alex parrado");
PrintPos(-1, hpos, "Build features:"
#ifdef SMB
" SMB:1"
#else
" SMB:0"
#endif

#ifdef ETH
" ETH:1"
#else
" ETH:0"
#endif
);
PrintPos(-1, hpos, "Project maintainers: sp193 & AKuHAK");
PrintPos(-1, hpos, " ");
PrintPos(-1, hpos, "uLaunchELF Project maintainers:");
Expand All @@ -329,12 +342,11 @@ static void Show_About_uLE(void)
PrintPos(-1, hpos, " kthu, Slam-Tilt, chip, pixel, Hermes");
PrintPos(-1, hpos, " and others in the PS2Dev community");
PrintPos(-1, hpos, " ");
PrintPos(-1, hpos, "Main release site:");
PrintPos(-1, hpos, " github.com/AKuHAK/uLaunchELF/releases");
PrintPos(-1, hpos, "Official release site:");
PrintPos(-1, hpos, " github.com/PS2Homebrew/uLaunchELF/releases");
PrintPos(-1, hpos, "Mod Release site:");
PrintPos(-1, hpos, " github.com/israpps/wLaunchELF_ISR_HDD/releases");
PrintPos(-1, hpos, "Ancestral project: LaunchELF v3.41");
PrintPos(-1, hpos, "Created by: Mirakichi");
PrintPos(-1, hpos, "Ancestral project: LaunchELF v3.41 by Mirakichi");
} //ends if(event||post_event)
drawScr();
post_event = event;
Expand Down

0 comments on commit 1f340b3

Please sign in to comment.