Fix include paths

This commit is contained in:
Krzosa Karol
2022-07-27 12:47:22 +02:00
parent a4a1f290a8
commit bb3723802a
2 changed files with 2 additions and 2 deletions

View File

@@ -120,7 +120,7 @@ union Intern_String{ // Basically just String
global String string_null = {(U8 *)"null", 4};
#include <stdio.h>
#define STB_SPRINTF_IMPLEMENTATION
#include "stb_sprintf.h"
#include "dependencies/stb_sprintf.h"
#define snprintf stbsp_snprintf

View File

@@ -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