bewitched said:I'm trying all day to get the HBC installed in sneek, i followed the same path you did. The wad posted here doesn't work for me.
I've got an extracted bootmii dump with a valid HBC install.
I've got a clean virgin/nand.
Which files from my bootmii hbc dump do i have to copy to my virgin nand?
And this
has to be added to the uid.sys file from the virgin nand?Code:00 01 00 01 4A 4F 44 49 00 00 10
thanx
bw
Cool.SanGor said:it's the same format except the tmd.bin/certs.bin/ticket.bin
mtech said:Using Rev 79 and 4.2U. When I press the GC start button, I get the menu, but it hangs there with a hissing sound. At the top right corner, it say EUR. I think some offsets are still not correct.
Anyone with the same problem?
conanac said:mtech said:Using Rev 79 and 4.2U. When I press the GC start button, I get the menu, but it hangs there with a hissing sound. At the top right corner, it say EUR. I think some offsets are still not correct.
Anyone with the same problem?
The offsets are fine (i.e. the same as mine), but it looks like the code has not adjusted the frame buffer size.
Try changing the following lines in main.c file (in ES folder) for running with system menu 4.2U:
1. Line number 1715, from:
memset32( (u32*)(FB), 0x10801080, 320*480*4 );
to:
memset32( (u32*)(FB), 0x10801080, 304*480*4 );
2. Line number 1797, from:
sync_after_write( (u32*)(FB), 320*480*4 );
to:
sync_after_write( (u32*)(FB), 304*480*4 );
Let me know whether these changes work or not (for my case it is working after making the changes).
Cheers.
Edit: if you want USA to show at the top right, then change line number 65, from:
static u32 Region = EUR;
to:
static u32 Region = USA;
FenrirWolf said:That's what I'd assume. But I can't get that far since I get that weird freeze with the game selection menu as well. Says EUR at the top even though I'm using a 4.2 NAND.
Though maybe a "freeze" isn't the best way to put it since I was able to move left and right to choose between games. I just couldn't press start to choose one. Also, I have 2 Wii games and one GCN title on there. Only the Wii games would be displayed by name, but I was indeed able to highlight the GCN game and it would retain the name of whatever game was selected last. But like I said I wasn't able to actually get back into the actual menu from there.
EDIT: I'll give those changes a shot and see what happens.