mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-01-21 08:31:00 +00:00
- fixed compilation of POSIX Debug targets
src/rendering/2d/f_wipe.cpp:291: undefined reference to `Wiper_Melt::HEIGHT'
This commit is contained in:
parent
5ca3ab3fc9
commit
8db550d251
1 changed files with 1 additions and 1 deletions
|
@ -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];
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue