fixing c standard lib includes

This commit is contained in:
Noel
2022-10-22 23:18:34 -07:00
parent a5f9701ce6
commit 30d7f2ee66
6 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,6 @@
#include <blah_common.h>
#include <blah_app.h>
#include <stdio.h> // for vsnprintf
using namespace Blah;

View File

@ -1,6 +1,7 @@
#include <blah_graphics.h>
#include <blah_stream.h>
#include "internal/blah_internal.h"
#include <string.h> // for strcmp
using namespace Blah;

View File

@ -1,5 +1,6 @@
#include <blah_stream.h>
#include <blah_string.h>
#include <string.h> // for memcpy
using namespace Blah;

View File

@ -1650,7 +1650,7 @@ Blah::Renderer* Blah::Renderer::try_make_d3d11()
#else // BLAH_RENDERER_D3D11
#include "renderer.h"
#include "blah_renderer.h"
Blah::Renderer* Blah::Renderer::try_make_d3d11()
{
return nullptr;