Thankfully, I don't own one. In case you haven't heard, apparently the original Zune devices aren't Y2K9 compliant. Nice.
http://shine.yahoo.com/channel/enter...-31-08-340573/
http://shine.yahoo.com/channel/enter...-31-08-340573/
year = ORIGINYEAR; /* = 1980 */
while (days > 365)
{
if (IsLeapYear(year))
{
if (days > 366)
{
days -= 366;
year += 1;
}
}
else
{
days -= 365;
year += 1;
}
}
Comment