mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-12 00:05:10 +00:00
Build fix for Orbis / PS4
This commit is contained in:
parent
27961401c6
commit
20cc65788d
1 changed files with 2 additions and 0 deletions
|
@ -18,11 +18,13 @@
|
|||
|
||||
#include <stdio.h> // vsnprintf, sscanf, printf
|
||||
#include <new> // new (ptr)
|
||||
#ifndef alloca
|
||||
#if defined(_MSC_VER) || defined(__MINGW32__)
|
||||
#include <malloc.h> // alloca
|
||||
#else
|
||||
#include <alloca.h> // alloca
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning (disable: 4505) // unreferenced local function has been removed (stb stuff)
|
||||
|
|
Loading…
Add table
Reference in a new issue