Skip to content

Commit 372bcef

Browse files
committed
Trivial fix for building example 'computecullandlod' for Android target.
The constexpr looks wrong in the ANDROID compile-time switch
1 parent 0951c1d commit 372bcef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/computecullandlod/computecullandlod.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
// Total number of objects (^3) in the scene
1616
#if defined(__ANDROID__)
17-
constexpr auto OBJECT_COUNT 32;
17+
constexpr auto OBJECT_COUNT = 32;
1818
#else
1919
constexpr auto OBJECT_COUNT = 64;
2020
#endif

0 commit comments

Comments
 (0)