Skip to content

Commit

Permalink
Fix definition of SURF_HINT
Browse files Browse the repository at this point in the history
  • Loading branch information
slipher committed Nov 3, 2024
1 parent dbfbd8b commit a672412
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/qcommon/SurfaceFlags.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#define SURF_NOMARKS BIT( 5 ) // 0x20 // missile will explode, but no mark will be left
#define SURF_SPLASH BIT( 6 ) // 0x40 // Q3 stores SURF_FLESH there; RTCW stores SURF_CERAMIC there; Wolf:ET stores SURF_SPLASH there
#define SURF_NODRAW BIT( 7 ) // 0x80 // renderer will not draw this surface, q3map2 will not paint lightmap either
#define SURF_HINT BIT( 7 ) // 0x100 // q3map2 will split BSP using this surface
#define SURF_HINT BIT( 8 ) // 0x100 // q3map2 will split BSP using this surface
#define SURF_SKIP BIT( 9 ) // 0x200 // ignore this surface, non-closed brushes can be made this way
#define SURF_NOLIGHTMAP BIT( 10 ) // 0x400 // lightmap will not be painted on such surface
#define SURF_POINTLIGHT BIT( 11 ) // 0x800 // sample lighting at vertexes
Expand Down

0 comments on commit a672412

Please sign in to comment.