GNOME Bugzilla – Bug 329698
High scores are broke
Last modified: 2006-02-12 06:34:06 UTC
Please describe the problem: When you beat the game it always reports your time as 0 seconds. Steps to reproduce: Actual results: Expected results: Does this happen every time? Other information:
I can confirm this happens. I will be investigating later. Once I've had some sleep.
I have a fix for the bug, but the fix has brought to light another bug which is now causing a crash shortly afterward, so it hasn't been uploaded to CVS yet. The following patch fixes the problem: - score.plain = (seconds / 60) * 1.0 + (seconds % 60) / 100.0; + score.time_double = (seconds / 60) * 1.0 + (seconds % 60) / 100.0;
The fix is now in CVS. 2.13.7 will be released tomorrow with this fix. Thanks for the bug report.