diff --git a/HBC/META.XML b/HBC/META.XML index 388099da..a65d7048 100644 --- a/HBC/META.XML +++ b/HBC/META.XML @@ -2,8 +2,8 @@ USB Loader GX USB Loader GX Team - 1.0 r988 - 201010011518 + 1.0 r989 + 201010011950 Loads games from USB-devices 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. The interactive GUI is completely controllable with WiiMote, Classic Controller or GC Controller. diff --git a/source/libwiigui/gui_text.cpp b/source/libwiigui/gui_text.cpp index dde6518a..b5c091e8 100644 --- a/source/libwiigui/gui_text.cpp +++ b/source/libwiigui/gui_text.cpp @@ -398,7 +398,7 @@ void GuiText::ScrollText() textDyn[pos] = new wchar_t[maxWidth]; - while (text[i] && currentWidth < maxWidth) + while (text[i] && currentWidth < maxWidth-40) { textDyn[pos][i] = text[i]; @@ -441,7 +441,7 @@ void GuiText::ScrollText() int i = 0, currentWidth = 0; - while (currentWidth < maxWidth) + while (currentWidth < maxWidth-40) { if (ch > strlen - 1) { diff --git a/source/menu/menu_disclist.cpp b/source/menu/menu_disclist.cpp index 6825cab8..837e83ce 100644 --- a/source/menu/menu_disclist.cpp +++ b/source/menu/menu_disclist.cpp @@ -519,8 +519,7 @@ int MenuDiscList() gameCarousel->SetAlignment(ALIGN_LEFT, ALIGN_CENTRE); } - GuiText clockTimeBack("88:88", 40, ( GXColor ) - { Theme.clock.r, Theme.clock.g, Theme.clock.b, Theme.clock.a / 6}); + GuiText clockTimeBack("88:88", 40, (GXColor) {Theme.clock.r, Theme.clock.g, Theme.clock.b, Theme.clock.a / 6}); clockTimeBack.SetAlignment(Theme.clock_align, ALIGN_TOP); clockTimeBack.SetPosition(Theme.clock_x, Theme.clock_y); clockTimeBack.SetFont(clock_ttf, clock_ttf_size); diff --git a/source/settings/Settings.cpp b/source/settings/Settings.cpp index 50a2c2ff..049fb88b 100644 --- a/source/settings/Settings.cpp +++ b/source/settings/Settings.cpp @@ -1037,14 +1037,6 @@ int MenuSettings() Settings.cios = 222; break; } - if ((Settings.cios == 222 && NandTitles.VersionOf(0x1000000deULL) != 4) - || (Settings.cios == 2 && NandTitles.VersionOf(0x1000000dfULL) != 4)) - { - WindowPrompt( - tr( "Hermes CIOS" ), - tr( "USB Loader GX will only run with Hermes CIOS rev 4! Please make sure you have revision 4 installed!" ), - tr( "OK" )); - } } if (Settings.godmode == 1) options2.SetValue(Idx, "IOS %i", Settings.cios); diff --git a/source/themes/CTheme.cpp b/source/themes/CTheme.cpp index 1246e5b0..6e47ebc9 100644 --- a/source/themes/CTheme.cpp +++ b/source/themes/CTheme.cpp @@ -181,8 +181,8 @@ void CTheme::SetDefault() install_x = 16;//-280 install_y = 355; clock = (GXColor) {138, 138, 138, 240}; - clock_align = ALIGN_CENTRE; - clock_x = 0; + clock_align = ALIGN_LEFT; + clock_x = 275; clock_y = 335;//330; info = ( GXColor ) {55, 190, 237, 255}; show_hddinfo = 1;