prompt to install game if a disc is inserted

This commit is contained in:
giantpune 2009-07-07 13:47:37 +00:00
parent 9b713cee7c
commit 5d6a361d03

View File

@ -38,6 +38,8 @@
#include "listfiles.h" #include "listfiles.h"
#include "fatmounter.h" #include "fatmounter.h"
#include "usbloader/wdvd.h"
#define MAX_CHARACTERS 38 #define MAX_CHARACTERS 38
/*** Variables that are also used extern ***/ /*** Variables that are also used extern ***/
@ -219,6 +221,12 @@ int MenuDiscList()
int selectImg1 = 0; int selectImg1 = 0;
char ID[4]; char ID[4];
char IDfull[7]; char IDfull[7];
u32 covert = 0;
WDVD_GetCoverStatus(&covert);
u32 covertOld=covert;
//SCREENSAVER //SCREENSAVER
//WPad_SetIdleTime(300); //needs the time in seconds //WPad_SetIdleTime(300); //needs the time in seconds
@ -609,6 +617,8 @@ int MenuDiscList()
WindowPrompt(0,idiotBuffer,tr("Ok")); WindowPrompt(0,idiotBuffer,tr("Ok"));
idiotFlag=-1;} idiotFlag=-1;}
WDVD_GetCoverStatus(&covert);
// if the idiot is showing favoorites and don't have any // if the idiot is showing favoorites and don't have any
if (Settings.fave && !gameCnt){ if (Settings.fave && !gameCnt){
WindowPrompt(tr("No Favorites"),tr("You are choosing to display favorites and you do not have any selected."),tr("Back")); WindowPrompt(tr("No Favorites"),tr("You are choosing to display favorites and you do not have any selected."),tr("Back"));
@ -709,7 +719,7 @@ int MenuDiscList()
else if (Settings.gameDisplay==grid){gameGrid->SetFocus(1);} else if (Settings.gameDisplay==grid){gameGrid->SetFocus(1);}
else if (Settings.gameDisplay==carousel){gameCarousel->SetFocus(1);} else if (Settings.gameDisplay==carousel){gameCarousel->SetFocus(1);}
} }
else if(installBtn.GetState() == STATE_CLICKED) else if((installBtn.GetState() == STATE_CLICKED)||((covert & 0x2)&&(covert!=covertOld)))
{ {
choice = WindowPrompt(tr("Install a game"),0,tr("Yes"),tr("No")); choice = WindowPrompt(tr("Install a game"),0,tr("Yes"),tr("No"));
if (choice == 1) if (choice == 1)
@ -1224,6 +1234,7 @@ int MenuDiscList()
screensaverIsOn=WindowScreensaver(); screensaverIsOn=WindowScreensaver();
if (screensaverIsOn==1)check=0; if (screensaverIsOn==1)check=0;
} }
covertOld=covert;
} }
HaltGui(); HaltGui();