Skip to content

Commit

Permalink
-missed a few %08lx. got them all now
Browse files Browse the repository at this point in the history
  • Loading branch information
Fledge68 committed Nov 15, 2018
1 parent f3e39a4 commit ca7a659
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified out/boot.dol
Binary file not shown.
4 changes: 2 additions & 2 deletions source/channel/channel_launcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ bool Identify(u64 titleid)
char filepath[ISFS_MAXPATH] ATTRIBUTE_ALIGN(32);
memset(filepath, 0, ISFS_MAXPATH);

gprintf("Reading TMD for %08lx %08lx...", TITLE_UPPER(titleid), TITLE_LOWER(titleid));
sprintf(filepath, "/title/%08lx/%08lx/content/title.tmd", TITLE_UPPER(titleid), TITLE_LOWER(titleid));
gprintf("Reading TMD for %08x %08x...", TITLE_UPPER(titleid), TITLE_LOWER(titleid));
sprintf(filepath, "/title/%08x/%08x/content/title.tmd", TITLE_UPPER(titleid), TITLE_LOWER(titleid));
u32 tmdSize;
u8 *tmdBuffer = ISFS_GetFile(filepath, &tmdSize, -1);
if (tmdBuffer == NULL || tmdSize == 0)
Expand Down

0 comments on commit ca7a659

Please sign in to comment.