mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-16 17:55:45 -04:00
dep/reshadefx: Fix building on MacOS/Linux
This commit is contained in:
@ -5,7 +5,11 @@
|
||||
|
||||
#include "effect_symbol_table.hpp"
|
||||
#include <cassert>
|
||||
#ifndef __APPLE__
|
||||
#include <malloc.h> // alloca
|
||||
#else
|
||||
#include <alloca.h>
|
||||
#endif
|
||||
#include <algorithm> // std::upper_bound, std::sort
|
||||
#include <functional> // std::greater
|
||||
|
||||
|
Reference in New Issue
Block a user