Skip to content

Commit

Permalink
Fix relative include path
Browse files Browse the repository at this point in the history
This is one of those things I need to figure out one of these days. With
a CMake build system, you can put pretty much anything in between
quotes, and it'll find it even if the relative path is wrong. Then with
a makefile, they have to be mostly correct, and then finally on more
obscure platforms, the build blows up if they are even slightly
incorrect.
Huh!
  • Loading branch information
vkoskiv committed Nov 1, 2023
1 parent afaa009 commit ba62952
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/loaders/sceneloader.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include "../logging.h"
#include "../fileio.h"
#include "../string.h"
#include "vendored/cJSON.h"
#include "../../vendored/cJSON.h"
#ifdef WINDOWS // Sigh...
#include <malloc.h>
#else
Expand Down

0 comments on commit ba62952

Please sign in to comment.