Skip to content

Commit

Permalink
- fixed compilation of POSIX Debug targets
Browse files Browse the repository at this point in the history
src/rendering/2d/f_wipe.cpp:291: undefined reference to `Wiper_Melt::HEIGHT'
  • Loading branch information
alexey-lysiuk committed Oct 30, 2021
1 parent 5ca3ab3 commit 8db550d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rendering/2d/f_wipe.cpp
Expand Up @@ -160,7 +160,7 @@ class Wiper_Melt : public Wiper
bool Run(int ticks) override;

private:
static const int WIDTH = 320, HEIGHT = 200;
static constexpr int WIDTH = 320, HEIGHT = 200;
int y[WIDTH];
};

Expand Down

0 comments on commit 8db550d

Please sign in to comment.