* Fixed a typo -> "Sytem Menu"

This commit is contained in:
fedeanto11 2012-02-11 21:28:53 +00:00
parent 380b35aebf
commit 28b476f8f9
4 changed files with 11 additions and 6 deletions

View File

@ -51,7 +51,7 @@ s32 BootChannel(u8 *data, u64 chantitle, u8 vidMode, bool vipatch, bool countryS
/* Set time */ /* Set time */
__Disc_SetTime(); __Disc_SetTime();
/* Set low memery */ /* Set low memory */
__Disc_SetLowMem(); __Disc_SetLowMem();
if (hooktype != 0) if (hooktype != 0)

View File

@ -137,10 +137,15 @@ int BootHomebrew()
memcpy(BOOTER_ADDR, app_booter_bin, app_booter_bin_size); memcpy(BOOTER_ADDR, app_booter_bin, app_booter_bin_size);
DCFlushRange(BOOTER_ADDR, app_booter_bin_size); DCFlushRange(BOOTER_ADDR, app_booter_bin_size);
ICInvalidateRange(BOOTER_ADDR, app_booter_bin_size);
entrypoint entry = (entrypoint) BOOTER_ADDR; entrypoint entry = (entrypoint) BOOTER_ADDR;
memmove(ARGS_ADDR, &args, sizeof(args)); if(!IsDollZ(homebrewbuffer))
memcpy(ARGS_ADDR, &args, sizeof(args));
else
memset(ARGS_ADDR, 0, sizeof(args));
DCFlushRange(ARGS_ADDR, sizeof(args) + args.length); DCFlushRange(ARGS_ADDR, sizeof(args) + args.length);
SYS_ResetSystem(SYS_SHUTDOWN, 0, 0); SYS_ResetSystem(SYS_SHUTDOWN, 0, 0);

View File

@ -20,7 +20,7 @@ int amountOfChannels = -1;
const CMenu::SOption CMenu::_exitTo[6] = { const CMenu::SOption CMenu::_exitTo[6] = {
{ "def", L"Default" }, { "def", L"Default" },
{ "menu", L"Sytem Menu" }, { "menu", L"System Menu" },
{ "hbc", L"HBC" }, { "hbc", L"HBC" },
{ "prii", L"Priiloader" }, { "prii", L"Priiloader" },
{ "disabled", L"Disabled" }, { "disabled", L"Disabled" },