mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2025-04-22 09:40:46 +00:00
rvmLightStyleState_t -> iceLightStyleState_t
This commit is contained in:
parent
f2acbbabde
commit
1d5750569d
1 changed files with 5 additions and 5 deletions
|
@ -44,9 +44,9 @@ extern const idEventDef EV_Light_SetLightParm;
|
|||
extern const idEventDef EV_Light_SetLightParms;
|
||||
|
||||
// jmarshall
|
||||
struct rvmLightStyleState_t
|
||||
struct iceLightStyleState_t
|
||||
{
|
||||
rvmLightStyleState_t();
|
||||
iceLightStyleState_t();
|
||||
|
||||
int dl_frame;
|
||||
float dl_framef;
|
||||
|
@ -57,12 +57,12 @@ struct rvmLightStyleState_t
|
|||
void Reset();
|
||||
};
|
||||
|
||||
ID_INLINE rvmLightStyleState_t::rvmLightStyleState_t()
|
||||
ID_INLINE iceLightStyleState_t::iceLightStyleState_t()
|
||||
{
|
||||
Reset();
|
||||
}
|
||||
|
||||
ID_INLINE void rvmLightStyleState_t::Reset()
|
||||
ID_INLINE void iceLightStyleState_t::Reset()
|
||||
{
|
||||
dl_frame = 0;
|
||||
dl_framef = 0;
|
||||
|
@ -202,7 +202,7 @@ private:
|
|||
|
||||
// jmarshall
|
||||
idList<idStr> light_styles;
|
||||
rvmLightStyleState_t lightStyleState;
|
||||
iceLightStyleState_t lightStyleState;
|
||||
// jmarshall end
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue