]> git.lizzy.rs Git - shadowclad.git/blobdiff - level.c
Further apply type aliases and cleanup includes
[shadowclad.git] / level.c
diff --git a/level.c b/level.c
index cec2d042e4e07b4c58668dd7f83f6302109cab1e..5e1cd6fbf5d73432e4cf834d48cdc0397fe1c5cd 100644 (file)
--- a/level.c
+++ b/level.c
@@ -24,7 +24,7 @@ void setImage(TgaImage* image) {
 }
 
 const AiScene* importScene(const char* path) {
-       const struct aiScene* scene = aiImportFile(path, 0u);
+       const AiScene* scene = aiImportFile(path, 0u);
        if (scene == NULL) {
                fprintf(stderr, "Asset import failed at file %s\n", path); // TODO factor logging the heck outta here
        }