-
The word "malus" does not exist in English. The correct word is "penalty". This patch fixes this.
2009-12-15 22:07:46 UTC in LGames
-
The word "appropriate" has been spelt incorrectly in several places. This patch corrects this.
2009-12-15 22:04:55 UTC in LGames
-
Debian Bug 342869
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=342869
This is still apparent in version 2.6
some audio files in lbreakout have strange sample rates (that is,
sample rates that do not fall in the usual family 16000 22050 24000
32000 44100 48000 ); some cheapo audio cards (such as those found in
notebooks and embedded in motherboards) do not natively support those...
2009-12-12 15:02:07 UTC in LGames
-
Debian bug 560247
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=560247
Even at the maximum 'Horizontal Delay' setting of 5, I find the keyboard
controls too twitchy -- it can be hard to move by a single column.
The attached trivial patch ups the range from 0-5 to 0-9.
2009-12-12 13:49:17 UTC in LGames
-
From Debian bug report 560248
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=560248
main() uses 'setlocale (LC_ALL, "")', but neither it nor any of the
local headers include .
Patch attached.
2009-12-12 13:46:45 UTC in LGames
-
The following error was raised on the Debian package for ltris, see:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=186780
As one example, this one in src/tetris.c in function tetris_make_stat was
broken:
(it only sets half the array)
double scores[1024];
[ cut ]
memset( scores, 0, sizeof( int ) * 1024 );
So I put in this:
memset( scores, 0, sizeof(scores) );.
2009-11-03 08:51:05 UTC in LGames
-
The word "malus" appears in the English text strings, this is not an
English word.
In English the word "penalty" is normally used in this situation.
Patch attached.
2009-11-03 08:46:42 UTC in LGames
-
The word "malus" appears in the English text strings, this is not an English word.
In English the word "penalty" is normally used in this situation.
Patch attached.
2009-10-24 14:13:36 UTC in LTris
-
The following error was raised on the Debian package for ltris, see:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=186780
As one example, this one in src/tetris.c in function tetris_make_stat was broken:
(it only sets half the array)
double scores[1024];
[ cut ]
memset( scores, 0, sizeof( int ) * 1024 );
So I put in this:
memset( scores, 0, sizeof(scores) );.
2009-10-13 20:36:35 UTC in LTris