teclilla18 / wiicoverflow

Automatically exported from code.google.com/p/wiicoverflow
0 stars 0 forks source link

Improvement for file source/info.c #328

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
I suggest to improve the following lines in  source/info.c 

37       sprintf(temp, "DeviceID: %u", self.deviceID);
41       sprintf(temp, "Version: %s (r%d)", RELEASE, SVN_VERSION);
45       sprintf(temp, "IOS Version: %d (rev%d)", IOS_GetVersion(),
IOS_GetRevision());

as follows:

37       sprintf(temp, TX.devID, self.deviceID);
41       sprintf(temp, TX.loaderVer, RELEASE, SVN_VERSION);
45       sprintf(temp, TX.iosVer, IOS_GetVersion(), IOS_GetRevision());

allowing in the language.lang files to have something like:

devID = DeviceID: %u
loaderVer = Version: %s (r%d)
iosVer = IOS Version: %d (rev%d)

Original issue reported on code.google.com by camb...@ec.unipi.it on 9 Jul 2009 at 9:46

GoogleCodeExporter commented 8 years ago

Original comment by scognito@gmail.com on 10 Jul 2009 at 9:57

GoogleCodeExporter commented 8 years ago
Hmm...I think these are international notations...but who knows?
Ok, with next language update i'll insert them...

Original comment by LoudBob11@googlemail.com on 10 Jul 2009 at 10:58

GoogleCodeExporter commented 8 years ago
Done with r895

Original comment by LoudBob11@googlemail.com on 9 Aug 2009 at 8:29