
Florian
Members-
Content count
940 -
Joined
-
Last visited
About Florian
-
Rank
Goblin
Contact Methods
-
Website URL
http://
-
ICQ
165582777
-
Well, then we're talking about different things. I don't like the static 45/60/whatever angle. All players look exactly the same then, and that's boring. See my bag variety patch, a small change to the bag position adds a lot of variation, and that's more vivid, more real.
-
Of course only one angle, set before the rotation starts. But a random angle.
-
Maybe random_min_max(35,75) would be a solution?
-
NIGHT_TEXTURES and NEW_LIGHTING are unsupported for a while now. And I'm afraid they're obsolete due to the new engine. The high load on texture loading is normal, as some computations are done.
-
glCopyTexImage2D() crashes on Ubuntu 9.04 intel driver
Florian replied to bluap's topic in Bug Reports
Can the intel chipset be detected by some openGL vendor string thingy? if (have_buggy_intel_driver) { new_code(); } else { old_code(); } -
:icon13:
-
install virtualbox install windows make maps
-
There's no difference between the official 1.8 release and the CVS regarding Eye Candy. It does not always happen, only if particles fly right throught the effect's center, and the distance between the center and the particle is lower than the accuracy of calculation and is very very near to zero. In 32bit mode, that's 0. In 64bit mode, that's NaN. I don't have an AMD64 to test and debug it, sorry. /EDIT: does ubuntu 64bit define X86_64?
-
Florian started following Ubuntu Magic leveling up crash
-
I'm afraid that's a 64bit problem. FP-math works differently when in 64bit mode. (in 32bit mode it returns 0, in 64bit mode it returns NaN) Can you provide backtraces from gdb?
-
dds.c: warning: array subscript is above array bounds
Florian replied to Florian's topic in Programming
OK -
dds.c: warning: array subscript is above array bounds
Florian replied to Florian's topic in Programming
typedef struct DXTInterpolatedAlphaBlock { Uint8 m_alphas[2]; Uint8 m_indices[6]; } DXTInterpolatedAlphaBlock; block->m_indices[idx0 + 1] idx0 reaches 5, +1 makes 6 --> ArrayOutOfBoundsException -
my brand new gcc 4.4 complains about dds.c dds.c: In function 'unpack_dxt_interpolated_alpha': dds.c:147: warning: array subscript is above array bounds dds.c:147: warning: array subscript is above array bounds dds.c: In function 'unpack_ati1': dds.c:147: warning: array subscript is above array bounds dds.c:147: warning: array subscript is above array bounds dds.c: In function 'unpack_ati2': dds.c:147: warning: array subscript is above array bounds dds.c:147: warning: array subscript is above array bounds dds.c:147: warning: array subscript is above array bounds dds.c:147: warning: array subscript is above array bounds dds.c: In function 'unpack_dxt5': dds.c:147: warning: array subscript is above array bounds dds.c:147: warning: array subscript is above array bounds
-
Applied to CVS, please test if it works.
-
The patch is created with eclipse, maybe the format for the patch command line utility differs ... Actually I don't want to commit untested code into CVS I don't know if it compiles.