- fixed compilation of POSIX Debug targets

src/rendering/2d/f_wipe.cpp:291: undefined reference to `Wiper_Melt::HEIGHT'
This commit is contained in:
alexey.lysiuk 2021-10-30 15:58:07 +03:00
parent 5ca3ab3fc9
commit 8db550d251

View file

@ -160,7 +160,7 @@ public:
bool Run(int ticks) override;
private:
static const int WIDTH = 320, HEIGHT = 200;
static constexpr int WIDTH = 320, HEIGHT = 200;
int y[WIDTH];
};