mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 00:55:06 +01:00
- disable splash image and wait animation if direct launching a wii game (wiiGSC).
This commit is contained in:
parent
e1d24b2c82
commit
ef1f601e9b
BIN
out/boot.dol
BIN
out/boot.dol
Binary file not shown.
Before Width: | Height: | Size: 4.4 MiB After Width: | Height: | Size: 4.4 MiB |
@ -129,7 +129,7 @@ int main(int argc, char **argv)
|
||||
}
|
||||
/* Init video */
|
||||
m_vid.init();
|
||||
if(showFlashImg)
|
||||
if(showFlashImg && gameid == NULL)// dont show if autobooting a wii game.
|
||||
m_vid.startImage();
|
||||
|
||||
/* check if WiiVC */
|
||||
@ -200,8 +200,11 @@ int main(int argc, char **argv)
|
||||
bool usb_mounted = DeviceHandle.MountAllUSB();// only mounts any USB if isUsingUSB()
|
||||
|
||||
/* init wait images and show wait animation */
|
||||
m_vid.setCustomWaitImgs(wait_dir, wait_loop);
|
||||
m_vid.waitMessage(0.15f);
|
||||
if(gameid == NULL)// dont show if autobooting a wii game.
|
||||
{
|
||||
m_vid.setCustomWaitImgs(wait_dir, wait_loop);
|
||||
m_vid.waitMessage(0.15f);
|
||||
}
|
||||
|
||||
/* init controllers for input */
|
||||
Open_Inputs();// WPAD_SetVRes() is called later in mainMenu.init() during cursor init which gets the theme pointer images
|
||||
|
@ -98,7 +98,8 @@ void CMenu::directlaunch(const char *GameID)// from boot arg for wii game only
|
||||
void CMenu::_launchShutdown()
|
||||
{
|
||||
CoverFlow.clear();
|
||||
_showWaitMessage();
|
||||
if(!m_directLaunch)
|
||||
_showWaitMessage();
|
||||
exitHandler(PRIILOADER_DEF); //Making wiiflow ready to boot something
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user