From bb3723802abf821c5f1b02b57ab58bef0876798f Mon Sep 17 00:00:00 2001 From: Krzosa Karol Date: Wed, 27 Jul 2022 12:47:22 +0200 Subject: [PATCH] Fix include paths --- base.cpp | 2 +- obj_dump.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/base.cpp b/base.cpp index 0166a2d..88e0f85 100644 --- a/base.cpp +++ b/base.cpp @@ -120,7 +120,7 @@ union Intern_String{ // Basically just String global String string_null = {(U8 *)"null", 4}; #include #define STB_SPRINTF_IMPLEMENTATION -#include "stb_sprintf.h" +#include "dependencies/stb_sprintf.h" #define snprintf stbsp_snprintf diff --git a/obj_dump.cpp b/obj_dump.cpp index 4a5e263..911116e 100644 --- a/obj_dump.cpp +++ b/obj_dump.cpp @@ -3,7 +3,7 @@ #define STBI_ASSERT assert #define STB_IMAGE_IMPLEMENTATION -#include "stb_image.h" +#include "dependencies/stb_image.h" enum class Obj_Token_Type { none, word, number, whitespace, end