mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-11 22:08:15 +00:00
Update mini_al to v0.8.8
Some minor tweaks around
This commit is contained in:
1753
src/external/mini_al.h
vendored
1753
src/external/mini_al.h
vendored
File diff suppressed because it is too large
Load Diff
@@ -2239,7 +2239,7 @@ static Mesh LoadOBJ(const char *fileName)
|
||||
{
|
||||
Mesh mesh = { 0 };
|
||||
|
||||
char dataType;
|
||||
char dataType = 0;
|
||||
char comments[200];
|
||||
|
||||
int vertexCount = 0;
|
||||
@@ -2262,7 +2262,7 @@ static Mesh LoadOBJ(const char *fileName)
|
||||
// NOTE: faces MUST be defined as TRIANGLES (3 vertex per face)
|
||||
while (!feof(objFile))
|
||||
{
|
||||
dataType = '\0';
|
||||
dataType = 0;
|
||||
fscanf(objFile, "%c", &dataType);
|
||||
|
||||
switch (dataType)
|
||||
|
Reference in New Issue
Block a user