Skip to content

Commit

Permalink
fix regression in S_CalculateLight
Browse files Browse the repository at this point in the history
  • Loading branch information
rr- committed Mar 19, 2021
1 parent fd59c4a commit ed08144
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/game/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -1304,11 +1304,11 @@ typedef struct DOOR_DATA {
} DOOR_DATA;

typedef struct LIGHT_INFO {
/* 0000 */ uint32_t x;
/* 0004 */ uint32_t y;
/* 0008 */ uint32_t z;
/* 000C */ uint16_t intensity;
/* 000E */ uint32_t falloff;
/* 0000 */ int32_t x;
/* 0004 */ int32_t y;
/* 0008 */ int32_t z;
/* 000C */ int16_t intensity;
/* 000E */ int32_t falloff;
/* 0012 end */
} LIGHT_INFO;

Expand Down

0 comments on commit ed08144

Please sign in to comment.