Files
test/source
Kent Mein 934a11e9ff ok my last little tweak for today ;)
I cleaned up the code a little did a couple of these:
if (blah > stuff - wah)  blah = stuff - wah;

changed to....
tmp = stuff - wah;
if (blah > tmp) blah = tmp;

and combined multiple if statements

Kent
2004-08-31 14:23:29 +00:00
..
2004-08-01 22:28:56 +00:00
2004-04-28 21:19:18 +00:00
2004-01-05 00:06:11 +00:00
2004-07-13 11:42:13 +00:00