Differences From Artifact [7f852b8ad3]:
- File src/renderparticles.m — part of check-in [12cac9666a] at 2025-03-20 22:22:40 on branch trunk — Convert remaining files to pure Objective-C (user: js, size: 3949) [annotate] [blame] [check-ins using]
To Artifact [f527e01774]:
- File src/renderparticles.m — part of check-in [e79356d2a6] at 2025-03-20 23:02:06 on branch trunk — Fix -Wgnu-folding-constant (user: js, size: 3944) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 | // renderparticles.cpp #include "cube.h" #import "DynamicEntity.h" | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | // renderparticles.cpp #include "cube.h" #import "DynamicEntity.h" #define MAXPARTICLES 10500 const int NUMPARTCUTOFF = 20; struct particle { OFVector3D o, d; int fade, type; int millis; struct particle *next; }; |
︙ | ︙ |