mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-04 18:45:05 +01:00
*Little correction
This commit is contained in:
parent
798ebc188d
commit
2ea5a823e0
@ -2,8 +2,8 @@
|
||||
<app version="1">
|
||||
<name> USB Loader GX</name>
|
||||
<coder>USB Loader GX Team</coder>
|
||||
<version>1.0 r1026</version>
|
||||
<release_date>201012311314</release_date>
|
||||
<version>1.0 r1029</version>
|
||||
<release_date>201101020924</release_date>
|
||||
<no_ios_reload/>
|
||||
<short_description>Loads games from USB-devices</short_description>
|
||||
<long_description>USB Loader GX is a libwiigui based USB iso loader with a wii-like GUI. You can install games to your HDDs and boot them with shorter loading times.
|
||||
|
@ -454,9 +454,9 @@ void WindowCredits()
|
||||
***************************************************************************/
|
||||
int WindowScreensaver()
|
||||
{
|
||||
//! 5 Seconds delay in case the wiimote shutdown was pressed
|
||||
//! 2 Seconds delay in case the wiimote shutdown was pressed
|
||||
time_t start = time(0);
|
||||
while(time(0)-start < 5)
|
||||
while(time(0)-start < 2)
|
||||
{
|
||||
usleep(100);
|
||||
|
||||
|
@ -110,7 +110,7 @@ bool Theme::Load(const char * theme_file_path)
|
||||
char * ptr = strrchr(theme_path, '/');
|
||||
*ptr = 0;
|
||||
snprintf(theme_path, sizeof(theme_path), "%s/%s", theme_path, Filename);
|
||||
Resources::LoadFiles(theme_path)
|
||||
Resources::LoadFiles(theme_path);
|
||||
}
|
||||
|
||||
//! Override font.ttf with the theme font.ttf if it exists in the image folder
|
||||
|
Loading…
Reference in New Issue
Block a user