*Little correction

This commit is contained in:
dimok321 2011-01-02 09:31:32 +00:00
parent 798ebc188d
commit 2ea5a823e0
3 changed files with 5 additions and 5 deletions

View File

@ -2,8 +2,8 @@
<app version="1"> <app version="1">
<name> USB Loader GX</name> <name> USB Loader GX</name>
<coder>USB Loader GX Team</coder> <coder>USB Loader GX Team</coder>
<version>1.0 r1026</version> <version>1.0 r1029</version>
<release_date>201012311314</release_date> <release_date>201101020924</release_date>
<no_ios_reload/> <no_ios_reload/>
<short_description>Loads games from USB-devices</short_description> <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. <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.

View File

@ -454,9 +454,9 @@ void WindowCredits()
***************************************************************************/ ***************************************************************************/
int WindowScreensaver() 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); time_t start = time(0);
while(time(0)-start < 5) while(time(0)-start < 2)
{ {
usleep(100); usleep(100);

View File

@ -110,7 +110,7 @@ bool Theme::Load(const char * theme_file_path)
char * ptr = strrchr(theme_path, '/'); char * ptr = strrchr(theme_path, '/');
*ptr = 0; *ptr = 0;
snprintf(theme_path, sizeof(theme_path), "%s/%s", theme_path, Filename); 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 //! Override font.ttf with the theme font.ttf if it exists in the image folder