2009-10-01 01:10:58 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* USB Loader GX Team
|
|
|
|
*
|
|
|
|
* libwiigui Template
|
|
|
|
* by Tantric 2009
|
|
|
|
*
|
|
|
|
* menu.cpp
|
|
|
|
* Menu flow routines - handles all menu logic
|
|
|
|
***************************************************************************/
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "libwiigui/gui.h"
|
|
|
|
#include "homebrewboot/BootHomebrew.h"
|
2009-11-15 20:52:58 +01:00
|
|
|
#include "homebrewboot/HomebrewBrowse.h"
|
2009-10-01 01:10:58 +02:00
|
|
|
#include "prompts/ProgressWindow.h"
|
2009-11-15 20:52:58 +01:00
|
|
|
#include "menu/menus.h"
|
2009-10-01 01:10:58 +02:00
|
|
|
#include "mload/mload.h"
|
2010-02-15 00:22:52 +01:00
|
|
|
#include "mload/mload_modules.h"
|
2009-10-01 01:10:58 +02:00
|
|
|
#include "network/networkops.h"
|
2009-11-15 20:52:58 +01:00
|
|
|
#include "patches/patchcode.h"
|
|
|
|
#include "settings/Settings.h"
|
2010-09-24 23:22:01 +02:00
|
|
|
#include "settings/CGameSettings.h"
|
2010-09-24 19:58:56 +02:00
|
|
|
#include "themes/CTheme.h"
|
2009-11-15 20:52:58 +01:00
|
|
|
#include "themes/Theme_Downloader.h"
|
|
|
|
#include "usbloader/disc.h"
|
2010-09-18 13:46:25 +02:00
|
|
|
#include "usbloader/GameList.h"
|
2010-10-01 17:01:19 +02:00
|
|
|
#include "mload/mload_modules.h"
|
2009-11-15 20:52:58 +01:00
|
|
|
#include "xml/xml.h"
|
2010-05-29 09:38:54 +02:00
|
|
|
#include "audio.h"
|
2009-11-15 20:52:58 +01:00
|
|
|
#include "gecko.h"
|
|
|
|
#include "menu.h"
|
2009-10-01 01:10:58 +02:00
|
|
|
#include "sys.h"
|
|
|
|
#include "wpad.h"
|
2009-11-21 23:59:57 +01:00
|
|
|
#include "settings/newtitles.h"
|
2009-12-04 16:05:20 +01:00
|
|
|
#include "patches/fst.h"
|
2009-12-19 15:05:31 +01:00
|
|
|
#include "usbloader/frag.h"
|
|
|
|
#include "usbloader/wbfs.h"
|
2010-09-19 01:04:39 +02:00
|
|
|
#include "wad/nandtitle.h"
|
2010-10-27 21:50:48 +02:00
|
|
|
#include "GameBootProcess.h"
|
2009-10-01 01:10:58 +02:00
|
|
|
|
|
|
|
/*** Variables that are also used extern ***/
|
|
|
|
GuiWindow * mainWindow = NULL;
|
|
|
|
GuiImageData * pointer[4];
|
|
|
|
GuiImage * bgImg = NULL;
|
|
|
|
GuiImageData * background = NULL;
|
2010-02-15 00:22:52 +01:00
|
|
|
GuiBGM * bgMusic = NULL;
|
2009-11-10 00:03:13 +01:00
|
|
|
GuiSound *btnClick2 = NULL;
|
|
|
|
|
2009-10-01 01:10:58 +02:00
|
|
|
int currentMenu;
|
2010-09-19 01:16:05 +02:00
|
|
|
u8 mountMethod = 0;
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2009-11-15 20:52:58 +01:00
|
|
|
char game_partition[6];
|
2009-12-19 15:05:31 +01:00
|
|
|
int load_from_fs;
|
2009-11-15 20:52:58 +01:00
|
|
|
|
|
|
|
/*** Variables used only in the menus ***/
|
|
|
|
GuiText * GameIDTxt = NULL;
|
|
|
|
GuiText * GameRegionTxt = NULL;
|
|
|
|
GuiImage * coverImg = NULL;
|
|
|
|
GuiImageData * cover = NULL;
|
|
|
|
bool altdoldefault = true;
|
2009-10-01 01:10:58 +02:00
|
|
|
|
|
|
|
static lwp_t guithread = LWP_THREAD_NULL;
|
|
|
|
static bool guiHalt = true;
|
|
|
|
static int ExitRequested = 0;
|
|
|
|
|
|
|
|
/*** Extern variables ***/
|
2010-01-19 11:48:50 +01:00
|
|
|
extern u8 shutdown;
|
|
|
|
extern u8 reset;
|
2009-10-01 01:10:58 +02:00
|
|
|
extern s32 gameSelected, gameStart;
|
|
|
|
extern u8 boothomebrew;
|
2009-12-24 09:33:53 +01:00
|
|
|
|
2009-10-01 01:10:58 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* ResumeGui
|
|
|
|
*
|
|
|
|
* Signals the GUI thread to start, and resumes the thread. This is called
|
|
|
|
* after finishing the removal/insertion of new elements, and after initial
|
|
|
|
* GUI setup.
|
|
|
|
***************************************************************************/
|
2010-09-19 01:16:05 +02:00
|
|
|
void ResumeGui()
|
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
guiHalt = false;
|
2010-09-24 02:48:03 +02:00
|
|
|
LWP_ResumeThread(guithread);
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* HaltGui
|
|
|
|
*
|
|
|
|
* Signals the GUI thread to stop, and waits for GUI thread to stop
|
|
|
|
* This is necessary whenever removing/inserting new elements into the GUI.
|
|
|
|
* This eliminates the possibility that the GUI is in the middle of accessing
|
|
|
|
* an element that is being changed.
|
|
|
|
***************************************************************************/
|
2010-09-19 01:16:05 +02:00
|
|
|
void HaltGui()
|
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
if (guiHalt) return;
|
2009-10-01 01:10:58 +02:00
|
|
|
guiHalt = true;
|
|
|
|
|
|
|
|
// wait for thread to finish
|
2010-09-24 02:48:03 +02:00
|
|
|
while (!LWP_ThreadIsSuspended(guithread))
|
|
|
|
usleep(50);
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* UpdateGUI
|
|
|
|
*
|
|
|
|
* Primary thread to allow GUI to respond to state changes, and draws GUI
|
|
|
|
***************************************************************************/
|
2010-09-24 02:48:03 +02:00
|
|
|
static void * UpdateGUI(void *arg)
|
2010-09-17 19:48:16 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
while (!ExitRequested)
|
2010-09-17 19:48:16 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
if (guiHalt)
|
2010-09-17 19:48:16 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
LWP_SuspendThread(guithread);
|
2010-09-17 19:48:16 +02:00
|
|
|
continue;
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
|
2010-09-17 19:48:16 +02:00
|
|
|
mainWindow->Draw();
|
2010-10-27 16:45:27 +02:00
|
|
|
if (Settings.tooltips == ON && Theme.show_tooltip != 0 && mainWindow->GetState() != STATE_DISABLED) mainWindow->DrawTooltip();
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
for (i = 3; i >= 0; i--)
|
2010-09-17 19:48:16 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
if (userInput[i].wpad.ir.valid)
|
2010-09-17 19:48:16 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
Menu_DrawImg(userInput[i].wpad.ir.x - 48, userInput[i].wpad.ir.y - 48, 200.0, 96, 96,
|
|
|
|
pointer[i]->GetImage(), userInput[i].wpad.ir.angle, Settings.widescreen ? 0.8 : 1, 1, 255, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0);
|
2010-09-17 19:48:16 +02:00
|
|
|
}
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
2010-01-19 11:48:50 +01:00
|
|
|
|
2010-09-17 19:48:16 +02:00
|
|
|
Menu_Render();
|
|
|
|
|
|
|
|
UpdatePads();
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
mainWindow->Update(&userInput[i]);
|
2010-09-17 19:48:16 +02:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
if (bgMusic) bgMusic->UpdateState();
|
2010-09-17 19:48:16 +02:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
switch (Settings.screensaver)
|
2010-09-17 19:48:16 +02:00
|
|
|
{
|
|
|
|
case 1:
|
2010-09-24 02:48:03 +02:00
|
|
|
WPad_SetIdleTime(180);
|
2010-09-17 19:48:16 +02:00
|
|
|
break;
|
|
|
|
case 2:
|
2010-09-24 02:48:03 +02:00
|
|
|
WPad_SetIdleTime(300);
|
2010-09-17 19:48:16 +02:00
|
|
|
break;
|
|
|
|
case 3:
|
2010-09-24 02:48:03 +02:00
|
|
|
WPad_SetIdleTime(600);
|
2010-09-17 19:48:16 +02:00
|
|
|
break;
|
|
|
|
case 4:
|
2010-09-24 02:48:03 +02:00
|
|
|
WPad_SetIdleTime(1200);
|
2010-09-17 19:48:16 +02:00
|
|
|
break;
|
|
|
|
case 5:
|
2010-09-24 02:48:03 +02:00
|
|
|
WPad_SetIdleTime(1800);
|
2010-09-17 19:48:16 +02:00
|
|
|
break;
|
|
|
|
case 6:
|
2010-09-24 02:48:03 +02:00
|
|
|
WPad_SetIdleTime(3600);
|
2010-09-17 19:48:16 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-01-19 11:48:50 +01:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
for (i = 5; i < 255; i += 10)
|
2010-09-17 19:48:16 +02:00
|
|
|
{
|
2010-10-27 21:50:48 +02:00
|
|
|
mainWindow->Draw();
|
2010-09-26 20:19:45 +02:00
|
|
|
Menu_DrawRectangle(0, 0, screenwidth, screenheight, (GXColor) {0, 0, 0, i}, 1);
|
2010-09-17 19:48:16 +02:00
|
|
|
Menu_Render();
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
2010-09-17 19:48:16 +02:00
|
|
|
mainWindow->RemoveAll();
|
|
|
|
ShutoffRumble();
|
|
|
|
|
2009-10-01 01:10:58 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* InitGUIThread
|
|
|
|
*
|
|
|
|
* Startup GUI threads
|
|
|
|
***************************************************************************/
|
2010-09-19 01:16:05 +02:00
|
|
|
void InitGUIThreads()
|
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
LWP_CreateThread(&guithread, UpdateGUI, NULL, NULL, 65536, LWP_PRIO_HIGHEST);
|
2009-10-01 01:10:58 +02:00
|
|
|
InitProgressThread();
|
|
|
|
InitNetworkThread();
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
if (Settings.autonetwork) ResumeNetworkThread();
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
void ExitGUIThreads()
|
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
ExitRequested = 1;
|
2010-09-24 02:48:03 +02:00
|
|
|
LWP_JoinThread(guithread, NULL);
|
2009-10-01 01:10:58 +02:00
|
|
|
guithread = LWP_THREAD_NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* LoadCoverImage
|
|
|
|
***************************************************************************/
|
2010-09-24 02:48:03 +02:00
|
|
|
GuiImageData *LoadCoverImage(struct discHdr *header, bool Prefere3D, bool noCover)
|
2010-02-09 11:59:55 +01:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
if (!header) return NULL;
|
2010-09-19 01:16:05 +02:00
|
|
|
GuiImageData *Cover = NULL;
|
|
|
|
char ID[4];
|
|
|
|
char IDfull[7];
|
|
|
|
char Path[100];
|
|
|
|
bool flag = Prefere3D;
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
snprintf(ID, sizeof(ID), "%c%c%c", header->id[0], header->id[1], header->id[2]);
|
|
|
|
snprintf(IDfull, sizeof(IDfull), "%s%c%c%c", ID, header->id[3], header->id[4], header->id[5]);
|
2010-09-19 01:16:05 +02:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
for (int i = 0; i < 2; ++i)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
char *coverPath = flag ? Settings.covers_path : Settings.covers2d_path;
|
|
|
|
flag = !flag;
|
2010-09-19 01:16:05 +02:00
|
|
|
//Load full id image
|
2010-09-24 02:48:03 +02:00
|
|
|
snprintf(Path, sizeof(Path), "%s%s.png", coverPath, IDfull);
|
|
|
|
delete Cover;
|
2010-09-26 10:33:43 +02:00
|
|
|
Cover = new (std::nothrow) GuiImageData(Path);
|
2010-09-19 01:16:05 +02:00
|
|
|
//Load short id image
|
2010-09-24 02:48:03 +02:00
|
|
|
if (!Cover || !Cover->GetImage())
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
snprintf(Path, sizeof(Path), "%s%s.png", coverPath, ID);
|
|
|
|
delete Cover;
|
2010-09-26 10:33:43 +02:00
|
|
|
Cover = new (std::nothrow) GuiImageData(Path);
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
if (Cover && Cover->GetImage()) break;
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
|
|
|
//Load no image
|
2010-09-24 02:48:03 +02:00
|
|
|
if (noCover && (!Cover || !Cover->GetImage()))
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
flag = Prefere3D;
|
2010-09-24 02:48:03 +02:00
|
|
|
for (int i = 0; i < 2; ++i)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
flag = !flag;
|
|
|
|
delete Cover;
|
2010-09-26 20:19:45 +02:00
|
|
|
Cover = Resources::GetImageData(Prefere3D ? "nocover.png" : "nocoverFlat.png");
|
2010-09-24 02:48:03 +02:00
|
|
|
if (Cover && Cover->GetImage()) break;
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
if (Cover && !Cover->GetImage())
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
delete Cover;
|
|
|
|
Cover = NULL;
|
|
|
|
}
|
|
|
|
return Cover;
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* MainMenu
|
|
|
|
***************************************************************************/
|
2010-09-24 02:48:03 +02:00
|
|
|
int MainMenu(int menu)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
currentMenu = menu;
|
2009-12-28 17:05:16 +01:00
|
|
|
|
2010-10-27 21:50:48 +02:00
|
|
|
MountGamePartition();
|
|
|
|
|
2010-09-26 20:19:45 +02:00
|
|
|
pointer[0] = Resources::GetImageData("player1_point.png");
|
|
|
|
pointer[1] = Resources::GetImageData("player2_point.png");
|
|
|
|
pointer[2] = Resources::GetImageData("player3_point.png");
|
|
|
|
pointer[3] = Resources::GetImageData("player4_point.png");
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
mainWindow = new GuiWindow(screenwidth, screenheight);
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-26 20:19:45 +02:00
|
|
|
background = Resources::GetImageData(Settings.widescreen ? "wbackground.png" : "background.png");
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
bgImg = new GuiImage(background);
|
|
|
|
mainWindow->Append(bgImg);
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-10-27 21:50:48 +02:00
|
|
|
ResumeGui();
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
bgMusic = new GuiBGM(bg_music_ogg, bg_music_ogg_size, Settings.volume);
|
|
|
|
bgMusic->SetLoop(Settings.musicloopmode); //loop music
|
|
|
|
bgMusic->Load(Settings.ogg_path);
|
2010-09-19 01:16:05 +02:00
|
|
|
bgMusic->Play();
|
2009-12-28 17:05:16 +01:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
while (currentMenu != MENU_EXIT)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
bgMusic->SetVolume(Settings.volume);
|
|
|
|
// gprintf("Current menu: %d\n", currentMenu);
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
switch (currentMenu)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
case MENU_INSTALL:
|
|
|
|
currentMenu = MenuInstall();
|
|
|
|
break;
|
|
|
|
case MENU_SETTINGS:
|
|
|
|
currentMenu = MenuSettings();
|
|
|
|
break;
|
|
|
|
case MENU_THEMEDOWNLOADER:
|
|
|
|
currentMenu = Theme_Downloader();
|
|
|
|
break;
|
|
|
|
case MENU_HOMEBREWBROWSE:
|
|
|
|
currentMenu = MenuHomebrewBrowse();
|
|
|
|
break;
|
|
|
|
case MENU_DISCLIST:
|
|
|
|
default: // unrecognized menu
|
2010-10-27 21:50:48 +02:00
|
|
|
currentMenu = MenuDiscList();
|
2010-09-19 01:16:05 +02:00
|
|
|
break;
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
}
|
2009-10-21 21:32:46 +02:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
// MemInfoPrompt();
|
2010-09-24 02:48:03 +02:00
|
|
|
gprintf("Exiting main GUI. mountMethod = %d\n", mountMethod);
|
2009-11-15 20:52:58 +01:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
CloseXMLDatabase();
|
2009-12-03 02:06:09 +01:00
|
|
|
NewTitles::DestroyInstance();
|
2010-01-20 19:33:30 +01:00
|
|
|
|
2010-10-27 21:50:48 +02:00
|
|
|
ResumeGui();
|
2010-09-19 01:16:05 +02:00
|
|
|
ExitGUIThreads();
|
2009-12-03 02:06:09 +01:00
|
|
|
|
2009-10-01 01:10:58 +02:00
|
|
|
bgMusic->Stop();
|
|
|
|
delete bgMusic;
|
|
|
|
delete background;
|
|
|
|
delete bgImg;
|
|
|
|
delete mainWindow;
|
2010-09-24 02:48:03 +02:00
|
|
|
for (int i = 0; i < 4; i++)
|
2009-10-01 01:10:58 +02:00
|
|
|
delete pointer[i];
|
|
|
|
delete GameRegionTxt;
|
|
|
|
delete GameIDTxt;
|
|
|
|
delete cover;
|
|
|
|
delete coverImg;
|
2010-09-19 01:16:05 +02:00
|
|
|
delete fontSystem;
|
|
|
|
ShutdownAudio();
|
2009-10-01 01:10:58 +02:00
|
|
|
StopGX();
|
2010-09-19 01:16:05 +02:00
|
|
|
gettextCleanUp();
|
2009-11-15 20:52:58 +01:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
if (mountMethod == 3)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
|
|
|
struct discHdr *header = gameList[gameSelected];
|
|
|
|
char tmp[20];
|
|
|
|
u32 tid;
|
2010-09-24 02:48:03 +02:00
|
|
|
sprintf(tmp, "%c%c%c%c", header->id[0], header->id[1], header->id[2], header->id[3]);
|
|
|
|
memcpy(&tid, tmp, 4);
|
|
|
|
gprintf("\nBooting title %016llx", TITLE_ID( ( header->id[5] == '1' ? 0x00010001 : 0x00010002 ), tid ));
|
2010-09-19 01:16:05 +02:00
|
|
|
WII_Initialize();
|
2010-09-24 02:48:03 +02:00
|
|
|
WII_LaunchTitle(TITLE_ID( ( header->id[5] == '1' ? 0x00010001 : 0x00010002 ), tid ));
|
2010-02-09 11:59:55 +01:00
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
if (mountMethod == 2)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
gprintf("\nLoading BC for GameCube");
|
2010-09-19 01:16:05 +02:00
|
|
|
WII_Initialize();
|
2010-09-24 02:48:03 +02:00
|
|
|
WII_LaunchTitle(0x0000000100000100ULL);
|
2010-02-09 11:59:55 +01:00
|
|
|
}
|
2010-09-19 01:16:05 +02:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
if (boothomebrew == 1)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
gprintf("\nBootHomebrew");
|
|
|
|
BootHomebrew(Settings.selected_homebrew);
|
2010-10-27 21:50:48 +02:00
|
|
|
return 0;
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
else if (boothomebrew == 2)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
gprintf("\nBootHomebrew from Menu");
|
2010-09-19 01:16:05 +02:00
|
|
|
BootHomebrewFromMem();
|
2010-10-27 21:50:48 +02:00
|
|
|
return 0;
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
|
|
|
|
2010-10-27 21:50:48 +02:00
|
|
|
return BootGame((const char *) gameList[gameSelected]->id);
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|