Skip to content

Commit

Permalink
Add missing header
Browse files Browse the repository at this point in the history
  • Loading branch information
knightcrawler25 committed Jan 6, 2022
1 parent 8a0897b commit ddbba9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/core/EnvironmentMap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include <math.h>
#include <memory.h>
#include <stdio.h>
#include <string>
#include "EnvironmentMap.h"

namespace GLSLPT
Expand Down
2 changes: 1 addition & 1 deletion src/loaders/Loader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ namespace GLSLPT

if (!success)
{
printf("Unable to load gltf %s\n", filename);
printf("Unable to load gltf %s\n", filename.c_str());
exit(0);
}
}
Expand Down

0 comments on commit ddbba9a

Please sign in to comment.