From 9101e7aedc6d71c0ba375f1af38ff9fb17de5e5e Mon Sep 17 00:00:00 2001 From: VMsunghwan Date: Thu, 25 Nov 2021 23:30:18 +0900 Subject: [PATCH] Update : Adjust the size of the flat panel --- examples/doom-fire/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/doom-fire/main.cpp b/examples/doom-fire/main.cpp index af1265d73..18877f1e9 100644 --- a/examples/doom-fire/main.cpp +++ b/examples/doom-fire/main.cpp @@ -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: