Possible fix for issue 1127

This commit is contained in:
e.bovendeur 2009-11-23 21:06:01 +00:00
parent c97c887775
commit cfb6ee9538
2 changed files with 4 additions and 3 deletions

View File

@ -2,8 +2,8 @@
<app version="1">
<name> USB Loader GX</name>
<coder>USB Loader GX Team</coder>
<version>1.0 r841</version>
<release_date>200911221220</release_date>
<version>1.0 r843</version>
<release_date>200911221717</release_date>
<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.
The interactive GUI is completely controllable with WiiMote, Classic Controller or GC Controller.

View File

@ -88,7 +88,8 @@ bool NewTitles::IsNew(u8 *titleid)
// This title is less than 24 hours old
if ((time(NULL) - t->timestamp) < NEW_SECONDS) {
// Only count the game as new when it's never been played through GX
return CFG_get_game_num(titleid)->count == 0;
Game_NUM *gnum = CFG_get_game_num(titleid);
return gnum == NULL || gnum->count == 0;
}
return false;
}