Skip to content

Commit

Permalink
Merge pull request #15 from RuffaloLavoisier/panel_size
Browse files Browse the repository at this point in the history
Update : Adjust the size of the flat panel
  • Loading branch information
uvwxy authored Nov 26, 2021
2 parents 17d335c + 9101e7a commit 50e872e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/doom-fire/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
using namespace std;

#define BUF_W 240
#define BUF_H 120
#define BUF_H 240
uint8_t** firePixels = new uint8_t*[BUF_H];
Graphics2D gfx2d(BUF_W, BUF_H, 120);
Graphics2D gfx2d(BUF_W, BUF_H,120);

class FireWindow : public SDLWindowRGB565 {
public:
Expand Down

0 comments on commit 50e872e

Please sign in to comment.