Files
illusion-arena-engine/code
sago007 dd2ce7ca1a No longer crashes on Linux 64 bit.
I did not know why "cg_leiEnhancement 1" caused the game to crash.

Before I started debugging I just ran through tr_particles.c and fixed a lot of warnings. This also fixed my problem.
I think the critical part was:
```
-int reallyactive;
+particle_t* reallyactive;
```

The diff makes it a bit hard but another change was:
```
else if (p->colortype = P_INDEXED)
```
to
```
else if (p->colortype == P_INDEXED)
```
and:
```
-vec3_t		color;
+vec4_t		color;
```
2016-11-27 10:34:14 +01:00
..
2013-03-12 21:50:59 +00:00
2013-02-16 20:58:04 +00:00
2014-02-08 03:21:02 +00:00
2014-02-08 03:29:10 +00:00
2013-05-30 15:43:21 -05:00
2013-05-30 15:43:21 -05:00