Skip to content

Commit 52a4dcb

Browse files
committed
- fix
1 parent 06e18ba commit 52a4dcb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Utils/OBJLoader.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ namespace Utilities
1212
*/
1313
struct MeshFaceIndices
1414
{
15-
int posIndices[3];
16-
int texIndices[3];
17-
int normalIndices[3];
15+
std::array<int, 3> posIndices;
16+
std::array<int, 3> texIndices;
17+
std::array<int, 3> normalIndices;
1818
};
1919

2020
/** \brief Read for OBJ files.

0 commit comments

Comments
 (0)