mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-04-19 22:10:52 +00:00
ngage: Remove Nokia N-Gage support.
This can be reverted if a toolchain arrives that can handle C99 features like variables declared in the middle of a scope, but for now we literally can't compile SDL3 for this platform. Fixes #11243.
This commit is contained in:
@@ -20,11 +20,7 @@
|
||||
*/
|
||||
|
||||
// Do our best to make sure va_copy is working
|
||||
#ifdef SDL_PLATFORM_NGAGE
|
||||
#undef va_copy
|
||||
#define va_copy(dst, src) dst = src
|
||||
|
||||
#elif defined(_MSC_VER) && _MSC_VER <= 1800
|
||||
#if defined(_MSC_VER) && _MSC_VER <= 1800
|
||||
// Visual Studio 2013 tries to link with _vacopy in the C runtime. Newer versions do an inline assignment
|
||||
#undef va_copy
|
||||
#define va_copy(dst, src) dst = src
|
||||
|
||||
Reference in New Issue
Block a user