Hacking USB Loader... my turn ;)

  • Thread starter Thread starter WiiShizzza
  • Start date Start date
  • Views Views 817,801
  • Replies Replies 4,239
hungyip, i mentioned your gui project here: http://gbatemp.net/index.php?showtopic=147...t&p=1923582

i stumbled over it while searching code.google.com for the 'krautloader'-gui
biggrin.gif
 
Small bugfix request:

The Wpad_Init() routine should be moved to before the jump to out. If my drive is not detected I can't use the wiimote to restart the system as the init routine is jumped over.
 
Screemer said:
hungyip, i mentioned your gui project here: http://gbatemp.net/index.php?showtopic=147...t&p=1923582

i stumbled over it while searching code.google.com for the 'krautloader'-gui
biggrin.gif

I am just using that google code page to practice my coding skill and also source control skill =)

Hopefully I will get into dimok's group and start merging the ultimate loader into it.
 
New boring cover for everyone
smile.gif
(2 of them)

This is for 16x9 bg.png only.

console_color=15,0
wconsole_coords=38,71,338,290
wcovers_coords=444,110



Red_Sky_Kosaic_16x9.png



Ducati_Kosaic_16x9.png
 
Kosaic said:
New boring cover for everyone
smile.gif


This is for 16x9 bg.png only.

console_color=15,0
wconsole_coords=38,71,338,290
wcovers_coords=444,110



Red_Sky_Kosaic_16x9.png


Can you tell me or link me to somewhere that will give the very basics of how to make covers like that in photoshop.
 
The network won't initialize for me in the latest version (V7.4 including source (version based on 1.5 - made by hungyip84 (19/04/09 )), I haven't tried a prior version but the network works in other homebrew and tests fine in the wii menu.
 
Here's how i've fixed it in my loader, i also gave it to oggzee so it's working for him too:

in gui.c change this:
QUOTE said:
int Net_Init(char *ip) {

s32 result;

result = net_init();

if (result >= 0)

to this:
QUOTEint Net_Init(char *ip) {

s32 result;

printf("trying to init network.");
while ((result = net_init()) == -EAGAIN)
{
printf(".");
fflush(stdout);
usleep(10 * 1000); //50ms
}


if (result >= 0)
 
icpmattj said:
Kosaic said:
New boring cover for everyone
smile.gif


This is for 16x9 bg.png only.

console_color=15,0
wconsole_coords=38,71,338,290
wcovers_coords=444,110



Red_Sky_Kosaic_16x9.png


Can you tell me or link me to somewhere that will give the very basics of how to make covers like that in photoshop.

click my link in sig than when you get there click templates, download it, change it, send it
gbasp.gif
 
Another for those who dont read backwards to the prior page
smile.gif


console_color=15,0
wconsole_coords=38,71,338,290
wcovers_coords=444,110


Ducati_Kosaic_16x9.png
 
Bladexdsl said:
icpmattj said:
Kosaic said:
New boring cover for everyone
smile.gif


This is for 16x9 bg.png only.

console_color=15,0
wconsole_coords=38,71,338,290
wcovers_coords=444,110



Red_Sky_Kosaic_16x9.png


Can you tell me or link me to somewhere that will give the very basics of how to make covers like that in photoshop.

click my link in sig than when you get there click templates, download it, change it, send it
gbasp.gif

I've tried that but im clueless on how to do it sorry
 
MickeyBlue said:
Hi all, I have a little problem with a skin, I hope someone will help me, I install this skin on my SD card http://www.usob.pandorasims.net/backs/BlueCarbon.RAR with these settings

I use the CIOS REV 10 with the loader Ultimate v7.4

QUOTE said:
# USBLoader config
wconsole_coords = 237,39,605,340
wcovers_coords = 26,35
console_color = 0,15
covers = 1
download = 0
installdownload = 0
savesettings = 1
images_path = SD:/images/
wimages_path = SD:/wimages/
background = bg.png
wbackground = wbg.png
entry_lines = 21
widescreen = 1
#

but the screen is the play list and covers is offset or so when I change the parameter because its a black screen and nothing appears, if you could tell me or I'm wrong, please thank you in advance
wink2.gif

If you are referring to the cover arts not appearing, it seems you have the download settings set to "off." Try setting download to 1 and downloadinstall (vs installdownload) to 1. FYI, in general "0" is "off" and "1" is "on."
 
I see that the default layout has changed with the last release, I was wondering what the coords were for the old layout as i don't have a background that matches the new one?
 
Zat said:
PNo4 said:
moviecouple said:
I would put it as RMGE01 = Super Mario's Crazy Adventure and that is how it should read on the screen?

So why isn't it working?

Try.

titles.txt (code = name = parentalcontrol)
Code:
RMGE = Super Mario's Crazy Adventure = 0


I have the same problem.
The names in the file titles.txt aren't display on the screen, but the original ones.

Can't use the parental control.
I put in config.txt :
Code:
parentalcontrol = 1
and in titles.txt :
CODE
RZZE = Madworld = 1
both of files are located in the same folder of the loader.

Someone can help ?
unsure.gif



Thanks guys for all that great job you are doing !!!
gbasp.gif

It could be one of two problems.

1) game code and title is not being read correctly in titles.txt

I had the same problem of game title not appearing after installing. The cursor moves to the title line place holder and appropriate cover art appears, and the game loads.

I solved the problem by deleting the title code and title and retyping both in the titles.txt.

2) From your code its seems the access level you set for Mad World would trigger the parental control. If still want the parental control, but want to make sure the game title appears in the loader screen, you may want to set the parental control to 2 (to allow games with access level of 0 or 1 to show up). Right now you have the parental control set to 1, which will allow games with access level of 0 only. Since you have the access level for Mad World set to 1, it would show up as "allowed" game and hence does not appear.

Hope this helps.
 
Terrulin said:
Threw these together a bit earlier

4x3
white_wii_4x3_NTSC.png

Add this to config.txt
Code:
background = white_wii_4x3_NTSC.png
console_coords = 36,36,340,290
covers_coords = 452,72

16x9
white_wii_16x9_NTSC.png

Add this to config.txt
Code:
wbackground = white_wii_16x9_NTSC.png
wconsole_coords = 28,36,348,400
wcovers_coords = 488,72
entry_lines = 21
max_characters = 38


WOHO. Great work. Can you make it work for Pal?
Thanks in advance
 

Site & Scene News

Popular threads in this forum