Merge pull request #1206 from zetier-hg/master

Trivial fix for building example 'computecullandlod' for Android target.
This commit is contained in:
Sascha Willems 2025-06-04 07:59:06 +02:00 committed by GitHub
commit d09364933e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,7 +14,7 @@
// Total number of objects (^3) in the scene
#if defined(__ANDROID__)
constexpr auto OBJECT_COUNT 32;
constexpr auto OBJECT_COUNT = 32;
#else
constexpr auto OBJECT_COUNT = 64;
#endif