GCC doesn't like this static const int for some weird reason...

This commit is contained in:
Magnus Norddahl 2025-05-12 20:00:32 +02:00
commit 2d772dc0f2

View file

@ -232,6 +232,6 @@ private:
} copy;
LightmapBakeImage bakeImage;
static const int bakeImageSize = 2048;
enum { bakeImageSize = 2048 };
std::unique_ptr<RectPacker> packer;
};