Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Nov 15, 2018
1 parent cc89d6a commit 148b06a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doomsday/apps/client/src/resource/materialanimator.cpp
Expand Up @@ -276,10 +276,10 @@ DENG2_PIMPL(MaterialAnimator)
/// Current state of a layer animation.
struct LayerState
{
int stage; ///< Animation stage else @c -1 => layer not in use.
int nextStage;
short tics; ///< Remaining (sharp) tics in the current stage.
float inter; ///< Intermark from the current stage to the next [0..1].
int stage = 0; ///< Animation stage else @c -1 => layer not in use.
int nextStage = 0;
short tics = 0; ///< Remaining (sharp) tics in the current stage.
float inter = 0.f; ///< Intermark from the current stage to the next [0..1].

QVector<ClientTexture *> stageTextures;

Expand Down

0 comments on commit 148b06a

Please sign in to comment.