diff options
Diffstat (limited to 'tests/scene/test_arraymesh.h')
-rw-r--r-- | tests/scene/test_arraymesh.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/scene/test_arraymesh.h b/tests/scene/test_arraymesh.h index 0e97e7d75f..1623b41300 100644 --- a/tests/scene/test_arraymesh.h +++ b/tests/scene/test_arraymesh.h @@ -195,7 +195,7 @@ TEST_CASE("[SceneTree][ArrayMesh] Surface metadata tests.") { } SUBCASE("Returns correct format for the mesh") { - auto format = RS::ARRAY_FORMAT_BLEND_SHAPE_MASK | RS::ARRAY_FORMAT_TEX_UV | RS::ARRAY_FORMAT_INDEX; + int format = RS::ARRAY_FORMAT_BLEND_SHAPE_MASK | RS::ARRAY_FORMAT_TEX_UV | RS::ARRAY_FORMAT_INDEX; CHECK((mesh->surface_get_format(0) & format) != 0); CHECK((mesh->surface_get_format(1) & format) != 0); } |