

ZeD said:R230 (Please some one help me - dont know how to upload to googlecode)![]()
Rapidshare r230.dol
Code:Changes 230 + Ocarina can be turned on through config via ocarina = [0]/1 ÂÂ Default if Off [0] + Plus and Minus to move through disc images (similar to wii channels now)
Once again I will post source once I can
EDIT: Source edited were main.cpp cfg.h cfg.c
==> Source
schnitzelbrain said:229DOL as Godmode toggle
no password needed, more like a teen/adult version.
http://www.mediafire.com/?utmnmrmf2nn


GuiTrigger trigA;
ÂÂÂÂtrigA.SetSimpleTrigger(-1, WPAD_BUTTON_A | WPAD_CLASSIC_BUTTON_A, PAD_BUTTON_A);
ÂÂÂÂGuiTrigger trigB;
ÂÂÂÂtrigB.SetButtonOnlyTrigger(-1, WPAD_BUTTON_B | WPAD_CLASSIC_BUTTON_B, PAD_BUTTON_B);
ÂÂÂÂGuiTrigger trigL;
ÂÂÂÂtrigL.SetButtonOnlyTrigger(-1, WPAD_BUTTON_MINUS | WPAD_CLASSIC_BUTTON_MINUS, PAD_BUTTON_LEFT);
ÂÂÂÂGuiTrigger trigR;
ÂÂÂÂtrigR.SetButtonOnlyTrigger(-1, WPAD_BUTTON_PLUS | WPAD_CLASSIC_BUTTON_PLUS, PAD_BUTTON_RIGHT);

schnitzelbrain said:I hope the main coders do not mind our "messin around in their work" posts
Maybe we should state thats not the official code release, every time
ZeD said:R230 (Please some one help me - dont know how to upload to googlecode)![]()
Code:Changes 230 + Ocarina can be turned on through config via ocarina = [0]/1 ÂÂ Default if Off [0] + Plus and Minus to move through disc images (similar to wii channels now)
Once again I will post source once I can
EDIT: Source edited were main.cpp cfg.h cfg.c
==> Source
ttkim said:Hi all,
For personal usage, I modified the source code (229) to have the following features:
1) If there is a config.txt in the apps dir, the loader will read it first. With this feature, you can have two loaders with difference config.txt: Ex: one with godmode and other without godmode.
2) You can configure the following parameters in the config.txt:
video = system, game, patch, pal50, pal60, ntsc
language = console,,japanese, english, german, french, spanish, italian, dutch, s.chinese, t.chinese, korean
hddinfo = HDDInfo, Clock
rumble = on, off
ocarina = 0, 1
vpatch = 0, 1
And here is the media link to whom like to have these features:
boot 229 Cust
Important note: These features are not implemented in the official source codes.

IlluminiX said:Is it possible to Turn the Sound OFF in the Config.txt? And if not, can it?
TheOtherMii said:I've made a custom theme with custom pointers. The pointer image is a little bigger than the default at 96X80.
The problem is the image appears with an opaque purple line under the pointer, in the same size as the image. Anyone else having the same problem?
The reason you get this is because the size 96 x 96 is coded into the loader. Your image has less pixel information that 96 x 96, so the missing pixels are filled in with whatever the application wants to fill it in with.
You need to change both lines that look like this in menu.cpp. Change the 96,96 to your size and the 48's to half of your size.
CODEif(userInput.wpad.ir.valid)
Menu_DrawImg(userInput.wpad.ir.x-48, userInput.wpad.ir.y-48,
96, 96, pointer->GetImage(), userInput.wpad.ir.angle, 1, 1, 255);
if(Settings.rumble == RumbleOn)
{
DoRumble(i);
}
